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

TranslationAnalysis.h « src « moses-cmd - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1eb7a04fd335c7ba2c8ba30de47d0b700f719163 (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
25
// $Id$

/*
 * also see moses/SentenceStats
 */

#ifndef moses_cmd_TranslationAnalysis_h
#define moses_cmd_TranslationAnalysis_h

#include <iostream>
#include "Hypothesis.h"
#include "TranslationSystem.h"

namespace TranslationAnalysis
{

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

}

#endif