File size: 325 Bytes
1ce325b
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Score an entire sentence splitting on whitespace.  This should not be needed
// for C++ users (who should do it themselves), but it's faster for python users.
#pragma once

namespace lm {
namespace base {

class Model;

float ScoreSentence(const Model *model, const char *sentence);

} // namespace base
} // namespace lm