Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TranslationAnalysis.h « moses-cmd - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 348cfe512b78a4a0ef29b04e2cbf4b055d4b8ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// $Id$

/*
 * also see moses/SentenceStats
 */

#ifndef moses_cmd_TranslationAnalysis_h
#define moses_cmd_TranslationAnalysis_h

#include <iostream>
#include "moses/Hypothesis.h"

namespace TranslationAnalysis
{

/***
 * print details about the translation represented in hypothesis to
 * os.  Included information: phrase alignment, words dropped, scores
 */
void PrintTranslationAnalysis(std::ostream &os, const Moses::Hypothesis* hypo);

}

#endif