xls-r-300m-sv-robust / kenlm /python /score_sentence.hh
marinone94's picture
Training in progress, epoch 0
1ce325b
// 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