mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
4e3dd11f53
The funtion is neither inherited from Scorer nor StatisticsBasedScorer.
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
#ifndef __PERSCORER_H__
|
|
#define __PERSCORER_H__
|
|
|
|
#include <iostream>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include "Types.h"
|
|
#include "Scorer.h"
|
|
|
|
using namespace std;
|
|
|
|
class ScoreStats;
|
|
|
|
/**
|
|
* An implementation of position-independent word error rate.
|
|
* This is defined as
|
|
* 1 - (correct - max(0,output_length - ref_length)) / ref_length
|
|
* In fact, we ignore the " 1 - " so that it can be maximised.
|
|
*/
|
|
class PerScorer: public StatisticsBasedScorer
|
|
{
|
|
public:
|
|
explicit PerScorer(const string& config = "");
|
|
~PerScorer();
|
|
|
|
virtual void setReferenceFiles(const vector<string>& referenceFiles);
|
|
virtual void prepareStats(size_t sid, const string& text, ScoreStats& entry);
|
|
|
|
virtual size_t NumberOfScores() const {
|
|
// cerr << "PerScorer: 3" << endl;
|
|
return 3;
|
|
}
|
|
|
|
virtual float calculateScore(const vector<int>& comps) const;
|
|
|
|
void whoami() const {
|
|
cerr << "I AM PerScorer" << std::endl;
|
|
}
|
|
|
|
private:
|
|
// no copying allowed
|
|
PerScorer(const PerScorer&);
|
|
PerScorer& operator=(const PerScorer&);
|
|
|
|
// data extracted from reference files
|
|
vector<size_t> m_ref_lengths;
|
|
vector<multiset<int> > m_ref_tokens;
|
|
};
|
|
|
|
#endif // __PERSCORER_H__
|