Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sizes.hh « lm - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb7e99de9fd2188e096aa0ff0cb9acccb981139b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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