mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
18 lines
374 B
C++
18 lines
374 B
C++
#ifndef LM_SIZES_H
|
|
#define LM_SIZES_H
|
|
|
|
#include <vector>
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace lm { namespace ngram {
|
|
|
|
struct Config;
|
|
|
|
void ShowSizes(const std::vector<uint64_t> &counts, const lm::ngram::Config &config);
|
|
void ShowSizes(const std::vector<uint64_t> &counts);
|
|
void ShowSizes(const char *file, const lm::ngram::Config &config);
|
|
|
|
}} // namespaces
|
|
#endif // LM_SIZES_H
|