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

TranslationOptionCollectionConfusionNet.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2d66222e65beb759eea93efc51466bc2dfef10a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id: TranslationOptionCollectionConfusionNet.h 1956 2008-12-13 12:08:55Z phkoehn $
#pragma once

#include "TranslationOptionCollection.h"

namespace Moses
{

class ConfusionNet;

class TranslationOptionCollectionConfusionNet : public TranslationOptionCollection {
 public:
	TranslationOptionCollectionConfusionNet(const ConfusionNet &source, size_t maxNoTransOptPerCoverage, float translationOptionThreshold);

	void ProcessUnknownWord(		size_t sourcePos);

};

}