#include "lm/sri.hh" #include #define BOOST_TEST_MODULE SRITest #include namespace lm { namespace sri { namespace { #define StartTest(word, ngram, score) \ ret = model.FullScore( \ state, \ model.GetVocabulary().Index(word), \ out);\ BOOST_CHECK_CLOSE(score, ret.prob, 0.001); \ BOOST_CHECK_EQUAL(static_cast(ngram), ret.ngram_length); \ BOOST_CHECK_EQUAL(std::min(ngram, 5 - 1), out.valid_length_); #define AppendTest(word, ngram, score) \ StartTest(word, ngram, score) \ state = out; template void Starters(M &model) { FullScoreReturn ret; Model::State state(model.BeginSentenceState()); Model::State out; StartTest("looking", 2, -0.4846522); // , probability plus backoff StartTest(",", 1, -1.383514 + -0.4149733); // probability plus backoff StartTest("this_is_not_found", 0, -1.995635 + -0.4149733); } template void Continuation(M &model) { FullScoreReturn ret; Model::State state(model.BeginSentenceState()); Model::State out; AppendTest("looking", 2, -0.484652); AppendTest("on", 3, -0.348837); AppendTest("a", 4, -0.0155266); AppendTest("little", 5, -0.00306122); State preserve = state; AppendTest("the", 1, -4.04005); AppendTest("biarritz", 1, -1.9889); AppendTest("not_found", 0, -2.29666); AppendTest("more", 1, -1.20632); AppendTest(".", 2, -0.51363); AppendTest("", 3, -0.0191651); state = preserve; AppendTest("more", 5, -0.00181395); AppendTest("loin", 5, -0.0432557); } BOOST_AUTO_TEST_CASE(starters) { Model m("test.arpa", 5); Starters(m); } BOOST_AUTO_TEST_CASE(continuation) { Model m("test.arpa", 5); Continuation(m); } } // namespace } // namespace sri } // namespace lm