mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 06:22:14 +03:00
1a6dcf5e36
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1715 1f5c12ca-751b-0410-a591-d2e778427230
70 lines
1.3 KiB
C++
70 lines
1.3 KiB
C++
/*
|
|
* FeatureStats.h
|
|
* met - Minimum Error Training
|
|
*
|
|
* Created by Nicola Bertoldi on 13/05/08.
|
|
*
|
|
*/
|
|
|
|
#ifndef FEATURE_STATS_H
|
|
#define FEATURE_STATS_H
|
|
|
|
using namespace std;
|
|
|
|
#include <limits>
|
|
#include <vector>
|
|
#include <iostream>
|
|
|
|
#include "Util.h"
|
|
|
|
typedef float FeatureStatsType;
|
|
|
|
#define FEATURE_STATS_MIN (numeric_limits<FeatureStatsType>::min())
|
|
#define ATOFST(str) ((FeatureStatsType) atof(str))
|
|
|
|
class FeatureStats
|
|
{
|
|
protected:
|
|
vector<FeatureStatsType> array_;
|
|
|
|
private:
|
|
|
|
public:
|
|
FeatureStats();
|
|
FeatureStats(const size_t size);
|
|
FeatureStats(const FeatureStats &stats);
|
|
FeatureStats(std::string &theString);
|
|
FeatureStats& operator=(const FeatureStats &stats);
|
|
|
|
~FeatureStats(){};
|
|
|
|
inline void clear() { array_.clear(); }
|
|
|
|
inline FeatureStatsType get(int i){ return array_.at(i); }
|
|
inline FeatureStatsType get(int i)const{ return array_.at(i); }
|
|
|
|
void set(std::string &theString);
|
|
|
|
void add(FeatureStatsType e){ array_.push_back(e); }
|
|
|
|
inline size_t size(){ return array_.size(); }
|
|
|
|
void savetxt(const std::string &file);
|
|
void savetxt(ofstream& outFile);
|
|
inline void savetxt(){ savetxt("/dev/stdout"); }
|
|
|
|
void loadtxt(ifstream& inFile);
|
|
void loadtxt(const std::string &file);
|
|
|
|
inline void reset()
|
|
{
|
|
for (vector<FeatureStatsType>::iterator i = array_.begin(); i != array_.end(); i++)
|
|
*i = 0;
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|