Skip to content

Commit

Permalink
Perplexity
Browse files Browse the repository at this point in the history
  • Loading branch information
kpu committed Sep 13, 2013
1 parent 6f7913c commit 25d33c9
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions lm/ngram_query.hh
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,33 @@
#include <istream>
#include <string>

#include <math.h>

namespace lm {
namespace ngram {

template <class Model> void Query(const Model &model, bool sentence_context, std::istream &in_stream, std::ostream &out_stream) {
std::cerr << "Loading statistics:\n";
util::PrintUsage(std::cerr);
typename Model::State state, out;
lm::FullScoreReturn ret;
std::string word;

double corpus_total = 0.0;
uint64_t corpus_oov = 0;
uint64_t corpus_tokens = 0;

while (in_stream) {
state = sentence_context ? model.BeginSentenceState() : model.NullContextState();
float total = 0.0;
bool got = false;
unsigned int oov = 0;
uint64_t oov = 0;
while (in_stream >> word) {
got = true;
lm::WordIndex vocab = model.GetVocabulary().Index(word);
if (vocab == 0) ++oov;
ret = model.FullScore(state, vocab, out);
total += ret.prob;
out_stream << word << '=' << vocab << ' ' << static_cast<unsigned int>(ret.ngram_length) << ' ' << ret.prob << '\t';
++corpus_tokens;
state = out;
char c;
while (true) {
Expand All @@ -50,12 +55,14 @@ template <class Model> void Query(const Model &model, bool sentence_context, std
if (sentence_context) {
ret = model.FullScore(state, model.GetVocabulary().EndSentence(), out);
total += ret.prob;
++corpus_tokens;
out_stream << "</s>=" << model.GetVocabulary().EndSentence() << ' ' << static_cast<unsigned int>(ret.ngram_length) << ' ' << ret.prob << '\t';
}
out_stream << "Total: " << total << " OOV: " << oov << '\n';
corpus_total += total;
corpus_oov += oov;
}
std::cerr << "After queries:\n";
util::PrintUsage(std::cerr);
out_stream << "Perplexity " << pow(10.0, -(corpus_total / static_cast<double>(corpus_tokens))) << std::endl;
}

template <class M> void Query(const char *file, bool sentence_context, std::istream &in_stream, std::ostream &out_stream) {
Expand Down

0 comments on commit 25d33c9

Please sign in to comment.