mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-29 06:52:34 +03:00
fc695c38a7
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4226 1f5c12ca-751b-0410-a591-d2e778427230
116 lines
2.6 KiB
C++
116 lines
2.6 KiB
C++
/*
|
|
* Data.h
|
|
* met - Minimum Error Training
|
|
*
|
|
* Created by Nicola Bertoldi on 13/05/08.
|
|
*
|
|
*/
|
|
|
|
#ifndef DATA_H
|
|
#define DATA_H
|
|
|
|
using namespace std;
|
|
|
|
#include <limits>
|
|
#include <vector>
|
|
#include <iostream>
|
|
|
|
#include "Util.h"
|
|
#include "FeatureData.h"
|
|
#include "ScoreData.h"
|
|
|
|
class Scorer;
|
|
|
|
class Data
|
|
{
|
|
protected:
|
|
ScoreData* scoredata;
|
|
FeatureData* featdata;
|
|
|
|
private:
|
|
Scorer* theScorer;
|
|
std::string score_type;
|
|
size_t number_of_scores; //number of scores
|
|
bool _sparse_flag;
|
|
|
|
public:
|
|
Data(Scorer& sc);
|
|
~Data() {};
|
|
|
|
inline void clear() {
|
|
scoredata->clear();
|
|
featdata->clear();
|
|
}
|
|
|
|
ScoreData* getScoreData() {
|
|
return scoredata;
|
|
};
|
|
FeatureData* getFeatureData() {
|
|
return featdata;
|
|
};
|
|
|
|
Scorer* getScorer() {
|
|
return theScorer;
|
|
}
|
|
|
|
inline size_t NumberOfFeatures() const {
|
|
return featdata->NumberOfFeatures();
|
|
}
|
|
inline void NumberOfFeatures(size_t v) {
|
|
featdata->NumberOfFeatures(v);
|
|
}
|
|
inline std::string Features() const {
|
|
return featdata->Features();
|
|
}
|
|
inline void Features(const std::string f) {
|
|
featdata->Features(f);
|
|
}
|
|
|
|
inline bool hasSparseFeatures() const { return _sparse_flag; }
|
|
void mergeSparseFeatures();
|
|
|
|
void loadnbest(const std::string &file);
|
|
|
|
void load(const std::string &featfile,const std::string &scorefile) {
|
|
featdata->load(featfile);
|
|
scoredata->load(scorefile);
|
|
if (featdata->hasSparseFeatures())
|
|
_sparse_flag = true;
|
|
}
|
|
|
|
void save(const std::string &featfile,const std::string &scorefile, bool bin=false) {
|
|
|
|
if (bin) cerr << "Binary write mode is selected" << endl;
|
|
else cerr << "Binary write mode is NOT selected" << endl;
|
|
|
|
featdata->save(featfile, bin);
|
|
scoredata->save(scorefile, bin);
|
|
}
|
|
|
|
inline bool existsFeatureNames() {
|
|
return featdata->existsFeatureNames();
|
|
};
|
|
|
|
inline std::string getFeatureName(size_t idx) {
|
|
return featdata->getFeatureName(idx);
|
|
};
|
|
|
|
inline size_t getFeatureIndex(const std::string& name) {
|
|
return featdata->getFeatureIndex(name);
|
|
};
|
|
|
|
void sampleRankedPairs( const std::string &rankedPairFile );
|
|
void outputSample( std::ostream &out, const FeatureStats &f1, const FeatureStats &f2 );
|
|
|
|
/**
|
|
* Create shard_count shards. If shard_size == 0, then the shards are non-overlapping
|
|
* and exhaust the data. If 0 < shard_size <= 1, then shards are chosen by sampling
|
|
* the data (with replacement) and shard_size is interpreted as the proportion
|
|
* of the total size.
|
|
*/
|
|
void createShards(size_t shard_count, float shard_size, const std::string& scorerconfig,
|
|
std::vector<Data>& shards);
|
|
};
|
|
|
|
#endif
|