#include "max_lex_target_given_source.h" #include #include "../translation_table.h" MaxLexTargetGivenSource::MaxLexTargetGivenSource( shared_ptr table) : table(table) {} double MaxLexTargetGivenSource::Score(const FeatureContext& context) const { // TODO(pauldb): Add NULL to source_words, after fixing translation table. vector source_words = context.source_phrase.GetWords(); vector target_words = context.target_phrase.GetWords(); double score = 0; for (string target_word: target_words) { double max_score = 0; for (string source_word: source_words) { max_score = max(max_score, table->GetTargetGivenSourceScore(source_word, target_word)); } score += max_score > 0 ? -log10(max_score) : MAX_SCORE; } return score; } string MaxLexTargetGivenSource::GetName() const { return "MaxLexEGivenF"; }