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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhieuhoang1972 <hieuhoang1972@1f5c12ca-751b-0410-a591-d2e778427230>2011-02-24 15:42:19 +0300
committerhieuhoang1972 <hieuhoang1972@1f5c12ca-751b-0410-a591-d2e778427230>2011-02-24 15:42:19 +0300
commit148c1e8305fbcf8dc0acd021fe5825842e0b3c8d (patch)
tree04041cbc625ff61db8d94471c6d2d1c61264f653 /mert/BleuScorer.h
parenta59ad11b58acf5dd64ec6f5990bb4ef5b74ebf28 (diff)
run beautify.perl. Consistent formatting for .h & .cpp files
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3899 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'mert/BleuScorer.h')
-rw-r--r--mert/BleuScorer.h136
1 files changed, 70 insertions, 66 deletions
diff --git a/mert/BleuScorer.h b/mert/BleuScorer.h
index cd2471b55..c2fce3f5c 100644
--- a/mert/BleuScorer.h
+++ b/mert/BleuScorer.h
@@ -23,84 +23,88 @@ enum BleuReferenceLengthStrategy { BLEU_AVERAGE, BLEU_SHORTEST, BLEU_CLOSEST };
/**
* Bleu scoring
**/
-class BleuScorer: public StatisticsBasedScorer {
- public:
- BleuScorer(const string& config = "") : StatisticsBasedScorer("BLEU",config),_refLengthStrategy(BLEU_CLOSEST) {
+class BleuScorer: public StatisticsBasedScorer
+{
+public:
+ BleuScorer(const string& config = "") : StatisticsBasedScorer("BLEU",config),_refLengthStrategy(BLEU_CLOSEST) {
//configure regularisation
static string KEY_REFLEN = "reflen";
static string REFLEN_AVERAGE = "average";
static string REFLEN_SHORTEST = "shortest";
static string REFLEN_CLOSEST = "closest";
-
-
+
+
string reflen = getConfig(KEY_REFLEN,REFLEN_CLOSEST);
if (reflen == REFLEN_AVERAGE) {
- _refLengthStrategy = BLEU_AVERAGE;
+ _refLengthStrategy = BLEU_AVERAGE;
} else if (reflen == REFLEN_SHORTEST) {
- _refLengthStrategy = BLEU_SHORTEST;
+ _refLengthStrategy = BLEU_SHORTEST;
} else if (reflen == REFLEN_CLOSEST) {
- _refLengthStrategy = BLEU_CLOSEST;
+ _refLengthStrategy = BLEU_CLOSEST;
} else {
- throw runtime_error("Unknown reference length strategy: " + reflen);
+ throw runtime_error("Unknown reference length strategy: " + reflen);
}
cerr << "Using reference length strategy: " << reflen << endl;
-}
- virtual void setReferenceFiles(const vector<string>& referenceFiles);
- virtual void prepareStats(size_t sid, const string& text, ScoreStats& entry);
- static const int LENGTH;
-
- size_t NumberOfScores(){ cerr << "BleuScorer: " << (2 * LENGTH + 1) << endl; return (2 * LENGTH + 1); };
-
-
- protected:
- float calculateScore(const vector<int>& comps);
-
- private:
- //no copy
- BleuScorer(const BleuScorer&);
- ~BleuScorer(){};
- BleuScorer& operator=(const BleuScorer&);
- //Used to construct the ngram map
- struct CompareNgrams {
- int operator() (const vector<int>& a, const vector<int>& b) {
- size_t i;
- size_t as = a.size();
- size_t bs = b.size();
- for (i = 0; i < as && i < bs; ++i) {
- if (a[i] < b[i]) {
- //cerr << "true" << endl;
- return true;
- }
- if (a[i] > b[i]) {
- //cerr << "false" << endl;
- return false;
- }
- }
- //entries are equal, shortest wins
- return as < bs;;
- }
- };
-
- typedef map<vector<int>,int,CompareNgrams> counts_t;
- typedef map<vector<int>,int,CompareNgrams>::iterator counts_it;
-
- typedef vector<counts_t*> refcounts_t;
-
- size_t countNgrams(const string& line, counts_t& counts, unsigned int n);
-
- void dump_counts(counts_t& counts) {
- for (counts_it i = counts.begin(); i != counts.end(); ++i) {
- cerr << "(";
- copy(i->first.begin(), i->first.end(), ostream_iterator<int>(cerr," "));
- cerr << ") " << i->second << ", ";
- }
- cerr << endl;
- }
- BleuReferenceLengthStrategy _refLengthStrategy;
-
- // data extracted from reference files
- refcounts_t _refcounts;
- vector<vector<size_t> > _reflengths;
+ }
+ virtual void setReferenceFiles(const vector<string>& referenceFiles);
+ virtual void prepareStats(size_t sid, const string& text, ScoreStats& entry);
+ static const int LENGTH;
+
+ size_t NumberOfScores() {
+ cerr << "BleuScorer: " << (2 * LENGTH + 1) << endl;
+ return (2 * LENGTH + 1);
+ };
+
+
+protected:
+ float calculateScore(const vector<int>& comps);
+
+private:
+ //no copy
+ BleuScorer(const BleuScorer&);
+ ~BleuScorer() {};
+ BleuScorer& operator=(const BleuScorer&);
+ //Used to construct the ngram map
+ struct CompareNgrams {
+ int operator() (const vector<int>& a, const vector<int>& b) {
+ size_t i;
+ size_t as = a.size();
+ size_t bs = b.size();
+ for (i = 0; i < as && i < bs; ++i) {
+ if (a[i] < b[i]) {
+ //cerr << "true" << endl;
+ return true;
+ }
+ if (a[i] > b[i]) {
+ //cerr << "false" << endl;
+ return false;
+ }
+ }
+ //entries are equal, shortest wins
+ return as < bs;;
+ }
+ };
+
+ typedef map<vector<int>,int,CompareNgrams> counts_t;
+ typedef map<vector<int>,int,CompareNgrams>::iterator counts_it;
+
+ typedef vector<counts_t*> refcounts_t;
+
+ size_t countNgrams(const string& line, counts_t& counts, unsigned int n);
+
+ void dump_counts(counts_t& counts) {
+ for (counts_it i = counts.begin(); i != counts.end(); ++i) {
+ cerr << "(";
+ copy(i->first.begin(), i->first.end(), ostream_iterator<int>(cerr," "));
+ cerr << ") " << i->second << ", ";
+ }
+ cerr << endl;
+ }
+ BleuReferenceLengthStrategy _refLengthStrategy;
+
+ // data extracted from reference files
+ refcounts_t _refcounts;
+ vector<vector<size_t> > _reflengths;
};