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