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

DummyScoreProducers.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f31401737dae12b2dea6daa9c849da547dd2696f (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
26
27
28
29
30
31
32
33
// $Id$

#ifndef _DUMMY_SCORE_PRODUCERS_H_
#define _DUMMY_SCORE_PRODUCERS_H_

#include "ScoreProducer.h"

class WordsRange;

/** Calculates Distortion scores
 */
class DistortionScoreProducer : public ScoreProducer {
public:
	DistortionScoreProducer();

	float CalculateDistortionScore(const WordsRange &prev, const WordsRange &curr) const;

	unsigned int GetNumScoreComponents() const;
	const std::string GetScoreProducerDescription() const;
};

/** Doesn't do anything but provide a key into the global
 * score array to store the word penalty in.
 */
class WordPenaltyProducer : public ScoreProducer {
public:
	WordPenaltyProducer();

	unsigned int GetNumScoreComponents() const;
	const std::string GetScoreProducerDescription() const;
};

#endif