mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
457d004368
example: Use --factor "0|2" to use only first and third factor from nbest list and from reference. If you use interpolated scorer, separate records with comma (e.g. --factor "0|2,1").
61 lines
1.5 KiB
C++
61 lines
1.5 KiB
C++
#ifndef __INTERPOLATED_SCORER_H__
|
|
#define __INTERPOLATED_SCORER_H__
|
|
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
#include <iostream>
|
|
#include <iterator>
|
|
#include <limits>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <vector>
|
|
#include "Types.h"
|
|
#include "ScoreData.h"
|
|
#include "Scorer.h"
|
|
#include "ScopedVector.h"
|
|
|
|
/**
|
|
* Class that includes other scorers eg.
|
|
* Interpolated HAMMING and BLEU scorer **/
|
|
class InterpolatedScorer : public Scorer
|
|
{
|
|
public:
|
|
// name would be: "HAMMING,BLEU" or similar
|
|
InterpolatedScorer(const string& name, const string& config);
|
|
virtual ~InterpolatedScorer() {}
|
|
|
|
virtual void score(const candidates_t& candidates, const diffs_t& diffs,
|
|
statscores_t& scores) const;
|
|
|
|
virtual void setReferenceFiles(const vector<string>& referenceFiles);
|
|
virtual void prepareStats(size_t sid, const string& text, ScoreStats& entry);
|
|
|
|
virtual size_t NumberOfScores() const {
|
|
size_t sz=0;
|
|
for (ScopedVector<Scorer>::const_iterator itsc = _scorers.begin(); itsc != _scorers.end(); itsc++) {
|
|
sz += (*itsc)->NumberOfScores();
|
|
}
|
|
return sz;
|
|
};
|
|
|
|
virtual void setScoreData(ScoreData* data);
|
|
|
|
/**
|
|
* Set the factors, which should be used for this metric
|
|
*/
|
|
virtual void setFactors(const string& factors);
|
|
|
|
protected:
|
|
ScopedVector<Scorer> _scorers;
|
|
|
|
// Take the ownership of the heap-allocated the objects
|
|
// by Scorer objects.
|
|
ScopedVector<ScoreData> m_scorers_score_data;
|
|
|
|
vector<float> _scorerWeights;
|
|
};
|
|
|
|
#endif //__INTERPOLATED_SCORER_H
|