mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-02 17:09:36 +03:00
12 lines
399 B
C++
12 lines
399 B
C++
#include "moses/FeatureVector.h"
|
|
#include "moses/ScoreComponentCollection.h"
|
|
|
|
namespace Mira {
|
|
|
|
class Hildreth {
|
|
public :
|
|
static std::vector<float> optimise (const std::vector<Moses::ScoreComponentCollection>& a, const std::vector<float>& b );
|
|
static std::vector<float> optimise (const std::vector<Moses::ScoreComponentCollection>& a, const std::vector<float>& b, float C);
|
|
};
|
|
}
|