mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-30 15:34:01 +03:00
40 lines
594 B
C++
40 lines
594 B
C++
/*
|
|
* Weights.h
|
|
*
|
|
* Created on: 24 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include "TypeDef.h"
|
|
|
|
namespace Moses2
|
|
{
|
|
|
|
class FeatureFunctions;
|
|
|
|
class Weights
|
|
{
|
|
public:
|
|
Weights();
|
|
virtual ~Weights();
|
|
void Init(const FeatureFunctions &ffs);
|
|
|
|
SCORE operator[](size_t ind) const
|
|
{
|
|
return m_weights[ind];
|
|
}
|
|
|
|
std::vector<SCORE> GetWeights(const FeatureFunction &ff) const;
|
|
|
|
void SetWeights(const FeatureFunctions &ffs, const std::string &ffName, const std::vector<float> &weights);
|
|
|
|
protected:
|
|
std::vector<SCORE> m_weights;
|
|
};
|
|
|
|
}
|
|
|