Joshua
open source statistical hierarchical phrase-based machine translation system
|
00001 #ifndef LM_SIZES_H 00002 #define LM_SIZES_H 00003 00004 #include <vector> 00005 00006 #include <stdint.h> 00007 00008 namespace lm { namespace ngram { 00009 00010 struct Config; 00011 00012 void ShowSizes(const std::vector<uint64_t> &counts, const lm::ngram::Config &config); 00013 void ShowSizes(const std::vector<uint64_t> &counts); 00014 void ShowSizes(const char *file, const lm::ngram::Config &config); 00015 00016 }} // namespaces 00017 #endif // LM_SIZES_H