blob: 16f3f609091ed04c28f4ed30896d2f0bc72ac38b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef LM_BUILDER_HEADER_INFO_H
#define LM_BUILDER_HEADER_INFO_H
#include <string>
#include <stdint.h>
// Some configuration info that is used to add
// comments to the beginning of an ARPA file
struct HeaderInfo {
const std::string input_file;
const uint64_t token_count;
HeaderInfo(const std::string& input_file_in, uint64_t token_count_in)
: input_file(input_file_in), token_count(token_count_in) {}
// TODO: Add smoothing type
// TODO: More info if multiple models were interpolated
};
#endif
|