mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 06:22:14 +03:00
291260abf7
- added PerSCorer.h and BleuScorer.h - stored feature names - fixed bug about output of best Point git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1796 1f5c12ca-751b-0410-a591-d2e778427230
131 lines
2.8 KiB
C++
131 lines
2.8 KiB
C++
/*
|
|
* ScoreData.cpp
|
|
* met - Minimum Error Training
|
|
*
|
|
* Created by Nicola Bertoldi on 13/05/08.
|
|
*
|
|
*/
|
|
|
|
#include <fstream>
|
|
#include "ScoreData.h"
|
|
#include "Scorer.h"
|
|
#include "Util.h"
|
|
|
|
|
|
ScoreData::ScoreData(Scorer& ptr):
|
|
theScorer(&ptr)
|
|
{
|
|
score_type = theScorer->getName();
|
|
theScorer->setScoreData(this);//this is not dangerous: we dont use the this pointer in SetScoreData
|
|
};
|
|
|
|
void ScoreData::save(std::ofstream& outFile, bool bin)
|
|
{
|
|
for (scoredata_t::iterator i = array_.begin(); i !=array_.end(); i++){
|
|
i->save(outFile, score_type);
|
|
}
|
|
}
|
|
|
|
void ScoreData::save(const std::string &file, bool bin)
|
|
{
|
|
if (file.empty()) return;
|
|
TRACE_ERR("saving the array into " << file << std::endl);
|
|
|
|
std::ofstream outFile(file.c_str(), std::ios::out); // matches a stream with a file. Opens the file
|
|
|
|
ScoreStats entry;
|
|
|
|
save(outFile, bin);
|
|
|
|
outFile.close();
|
|
}
|
|
|
|
void ScoreData::load(ifstream& inFile)
|
|
{
|
|
ScoreArray entry;
|
|
|
|
int iter=0;
|
|
while (!inFile.eof()){
|
|
TRACE_ERR("iter " << iter << " size " << size() << std::endl);
|
|
|
|
entry.clear();
|
|
entry.loadtxt(inFile);
|
|
|
|
if (entry.size() == 0){
|
|
continue;
|
|
}
|
|
add(entry);
|
|
iter++;
|
|
}
|
|
if (size()>0)
|
|
number_of_scores=get(0).NumberOfScores();
|
|
}
|
|
|
|
|
|
void ScoreData::load(const std::string &file)
|
|
{
|
|
TRACE_ERR("loading score data from " << file << std::endl);
|
|
|
|
inputfilestream inFile(file); // matches a stream with a file. Opens the file
|
|
|
|
if (!inFile) {
|
|
throw runtime_error("Unable to open score file: " + file);
|
|
}
|
|
|
|
load((ifstream&) inFile);
|
|
|
|
inFile.close();
|
|
}
|
|
|
|
|
|
void ScoreData::add(ScoreArray& e){
|
|
if (exists(e.getIndex())){ // array at position e.getIndex() already exists
|
|
//enlarge array at position e.getIndex()
|
|
size_t pos = getIndex(e.getIndex());
|
|
array_.at(pos).merge(e);
|
|
}
|
|
else{
|
|
array_.push_back(e);
|
|
setIndex();
|
|
}
|
|
}
|
|
|
|
void ScoreData::add(const ScoreStats& e, const std::string& sent_idx){
|
|
if (exists(sent_idx)){ // array at position e.getIndex() already exists
|
|
//enlarge array at position e.getIndex()
|
|
size_t pos = getIndex(sent_idx);
|
|
// TRACE_ERR("Inserting in array " << sent_idx << std::endl);
|
|
array_.at(pos).add(e);
|
|
// TRACE_ERR("size: " << size() << " -> " << a.size() << std::endl);
|
|
}
|
|
else{
|
|
// TRACE_ERR("Creating a new entry in the array" << std::endl);
|
|
ScoreArray a;
|
|
a.add(e);
|
|
a.setIndex(sent_idx);
|
|
add(a);
|
|
// TRACE_ERR("size: " << size() << " -> " << a.size() << std::endl);
|
|
}
|
|
}
|
|
|
|
|
|
bool ScoreData::check_consistency()
|
|
{
|
|
if (array_.size() == 0)
|
|
return true;
|
|
|
|
for (scoredata_t::iterator i = array_.begin(); i !=array_.end(); i++)
|
|
if (!i->check_consistency()) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void ScoreData::setIndex()
|
|
{
|
|
size_t j=0;
|
|
for (scoredata_t::iterator i = array_.begin(); i !=array_.end(); i++){
|
|
idx2arrayname_[j]=i->getIndex();
|
|
arrayname2idx_[i->getIndex()]=j;
|
|
j++;
|
|
}
|
|
} |