mosesdecoder/mert/ScoreArray.h
nicolabertoldi e94834012d added facilities to read and write score statistics in binary format
moved facilities for feature names in FeatureData object


git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1824 1f5c12ca-751b-0410-a591-d2e778427230
2008-06-05 17:03:54 +00:00

81 lines
2.0 KiB
C++

/*
* ScoreArray.h
* met - Minimum Error Training
*
* Created by Nicola Bertoldi on 13/05/08.
*
*/
#ifndef SCORE_ARRAY_H
#define SCORE_ARRAY_H
#define SCORES_TXT_BEGIN "SCORES_TXT_BEGIN_0"
#define SCORES_TXT_END "SCORES_TXT_END_0"
#define SCORES_BIN_BEGIN "SCORES_BIN_BEGIN_0"
#define SCORES_BIN_END "SCORES_BIN_END_0"
using namespace std;
#include <limits>
#include <vector>
#include <iostream>
#include <fstream>
#include "Util.h"
#include "ScoreStats.h"
class ScoreArray
{
protected:
scorearray_t array_;
std::string score_type;
size_t number_of_scores;
private:
std::string idx; // idx to identify the utterance, it can differ from the index inside the vector
public:
ScoreArray();
~ScoreArray(){};
inline void clear() { array_.clear(); }
inline std::string getIndex(){ return idx; }
inline void setIndex(const std::string& value){ idx=value; }
// inline ScoreStats get(size_t i){ return array_.at(i); }
inline ScoreStats& get(size_t i){ return array_.at(i); }
inline const ScoreStats& get(size_t i)const{ return array_.at(i); }
void add(const ScoreStats& e){ array_.push_back(e); }
void merge(ScoreArray& e);
inline std::string name() const{ return score_type; };
inline void name(std::string &sctype){ score_type = sctype; };
inline size_t size(){ return array_.size(); }
inline size_t NumberOfScores() const{ return number_of_scores; }
inline void NumberOfScores(size_t v){ number_of_scores = v; }
void savetxt(ofstream& outFile, const std::string& sctype);
void savebin(ofstream& outFile, const std::string& sctype);
void save(ofstream& outFile, const std::string& sctype, bool bin=false);
void save(const std::string &file, const std::string& sctype, bool bin=false);
inline void save(const std::string& sctype, bool bin=false){ save("/dev/stdout", sctype, bin); }
void loadtxt(ifstream& inFile, size_t n);
void loadbin(ifstream& inFile, size_t n);
void load(ifstream& inFile);
void load(const std::string &file);
bool check_consistency();
};
#endif