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

srilm.h « lmserver « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9b00ef928d831e51342b9b57dac6ccb392676dd (plain)
1
2
3
4
5
6
7
8
#ifndef lmserver_srilm_h
#define lmserver_srilm_h

void srilm_init(const char* fname, int order);
int srilm_getvoc(const char* word);
float srilm_wordprob(int, int*);

#endif