vecxoz's picture
Upload folder using huggingface_hub
386532a verified
Raw
History Blame Contribute Delete
325 Bytes
// 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