mosesdecoder/moses/ScoreComponentCollection.cpp

381 lines
10 KiB
C++
Raw Permalink Normal View History

// -*- mode: c++; indent-tabs-mode: nil; tab-width:2 -*-
#include <vector>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/foreach.hpp>
#include <boost/format.hpp>
2013-09-10 17:36:21 +04:00
#include "util/exception.hh"
2015-10-05 13:54:29 +03:00
#include "util/string_stream.hh"
#include "ScoreComponentCollection.h"
#include "StaticData.h"
2014-12-30 16:23:30 +03:00
#include "moses/FF/StatelessFeatureFunction.h"
#include "moses/FF/StatefulFeatureFunction.h"
using namespace std;
using namespace boost::algorithm;
namespace Moses
{
2013-09-08 18:43:18 +04:00
void ScorePair::PlusEquals(const ScorePair &other)
{
2013-09-27 12:35:24 +04:00
PlusEquals(other.denseScores);
std::map<StringPiece, float>::const_iterator iter;
for (iter = other.sparseScores.begin(); iter != other.sparseScores.end(); ++iter) {
PlusEquals(iter->first, iter->second);
}
2013-09-08 18:43:18 +04:00
}
2013-09-08 19:02:59 +04:00
void ScorePair::PlusEquals(const StringPiece &key, float value)
2013-09-08 18:43:18 +04:00
{
2013-09-27 12:35:24 +04:00
std::map<StringPiece, float>::iterator iter;
iter = sparseScores.find(key);
if (iter == sparseScores.end()) {
sparseScores[key] = value;
} else {
float &existingval = iter->second;
existingval += value;
}
2013-09-08 18:43:18 +04:00
}
2011-11-09 21:16:02 +04:00
2013-09-10 17:36:21 +04:00
std::ostream& operator<<(std::ostream& os, const ScorePair& rhs)
{
2013-09-27 12:35:24 +04:00
for (size_t i = 0; i < rhs.denseScores.size(); ++i) {
os << rhs.denseScores[i] << ",";
}
2013-09-10 17:36:21 +04:00
2013-09-27 12:35:24 +04:00
std::map<StringPiece, float>::const_iterator iter;
for (iter = rhs.sparseScores.begin(); iter != rhs.sparseScores.end(); ++iter) {
os << iter->first << "=" << iter->second << ",";
}
2013-09-10 17:36:21 +04:00
2013-09-27 12:35:24 +04:00
return os;
2013-09-10 17:36:21 +04:00
}
//ScoreComponentCollection::ScoreIndexMap ScoreComponentCollection::s_scoreIndexes;
2011-11-09 21:16:02 +04:00
size_t ScoreComponentCollection::s_denseVectorSize = 0;
2013-09-25 03:13:49 +04:00
ScoreComponentCollection::
2013-09-27 12:35:24 +04:00
ScoreComponentCollection()
2013-09-25 03:13:49 +04:00
: m_scores(s_denseVectorSize)
{}
2013-09-27 12:35:24 +04:00
void
2013-09-25 03:13:49 +04:00
ScoreComponentCollection::
RegisterScoreProducer(FeatureFunction* scoreProducer)
2011-11-09 21:16:02 +04:00
{
size_t start = s_denseVectorSize;
s_denseVectorSize = scoreProducer->SetIndex(s_denseVectorSize);
2013-09-27 12:35:24 +04:00
VERBOSE(1, "FeatureFunction: "
<< scoreProducer->GetScoreProducerDescription()
<< " start: " << start
2015-05-02 13:45:24 +03:00
<< " end: " << (s_denseVectorSize-1) << endl);
2011-11-09 21:16:02 +04:00
}
2011-11-16 15:49:31 +04:00
2013-09-27 12:35:24 +04:00
float
2013-09-25 03:13:49 +04:00
ScoreComponentCollection::
GetWeightedScore() const
{
2013-05-29 21:16:15 +04:00
return m_scores.inner_product(StaticData::Instance().GetAllWeights().m_scores);
}
void ScoreComponentCollection::MultiplyEquals(float scalar)
{
2013-05-29 21:16:15 +04:00
m_scores *= scalar;
}
// Multiply all weights of this sparse producer by a given scalar
2013-05-29 21:16:15 +04:00
void ScoreComponentCollection::MultiplyEquals(const FeatureFunction* sp, float scalar)
{
std::string prefix = sp->GetScoreProducerDescription() + FName::SEP;
for(FVector::FNVmap::const_iterator i = m_scores.cbegin(); i != m_scores.cend(); i++) {
2015-10-02 22:12:39 +03:00
const std::string &name = i->first.name();
if (starts_with(name, prefix))
2013-05-29 21:16:15 +04:00
m_scores[i->first] = i->second * scalar;
}
}
// Count weights belonging to this sparse producer
2013-05-29 21:16:15 +04:00
size_t ScoreComponentCollection::GetNumberWeights(const FeatureFunction* sp)
{
std::string prefix = sp->GetScoreProducerDescription() + FName::SEP;
size_t weights = 0;
for(FVector::FNVmap::const_iterator i = m_scores.cbegin(); i != m_scores.cend(); i++) {
2015-10-02 22:12:39 +03:00
const std::string &name = i->first.name();
if (starts_with(name, prefix))
2013-05-29 21:16:15 +04:00
weights++;
}
return weights;
}
void ScoreComponentCollection::DivideEquals(float scalar)
{
2013-05-29 21:16:15 +04:00
m_scores /= scalar;
}
2012-03-14 21:59:59 +04:00
void ScoreComponentCollection::CoreDivideEquals(float scalar)
{
2013-05-29 21:16:15 +04:00
m_scores.coreDivideEquals(scalar);
2012-03-14 21:59:59 +04:00
}
void ScoreComponentCollection::DivideEquals(const ScoreComponentCollection& rhs)
{
2013-05-29 21:16:15 +04:00
m_scores.divideEquals(rhs.m_scores);
}
void ScoreComponentCollection::MultiplyEquals(const ScoreComponentCollection& rhs)
{
2013-05-29 21:16:15 +04:00
m_scores *= rhs.m_scores;
}
2012-05-18 21:58:42 +04:00
void ScoreComponentCollection::MultiplyEqualsBackoff(const ScoreComponentCollection& rhs, float backoff)
2012-05-15 20:49:54 +04:00
{
2012-05-18 21:58:42 +04:00
m_scores.multiplyEqualsBackoff(rhs.m_scores, backoff);
}
void ScoreComponentCollection::MultiplyEquals(float core_r0, float sparse_r0)
{
m_scores.multiplyEquals(core_r0, sparse_r0);
2012-05-15 20:49:54 +04:00
}
std::ostream& operator<<(std::ostream& os, const ScoreComponentCollection& rhs)
{
2013-05-29 21:16:15 +04:00
os << rhs.m_scores;
return os;
}
2013-05-29 21:16:15 +04:00
void ScoreComponentCollection::L1Normalise()
{
2012-04-26 02:48:12 +04:00
m_scores /= m_scores.l1norm_coreFeatures();
}
2013-05-29 21:16:15 +04:00
float ScoreComponentCollection::GetL1Norm() const
{
return m_scores.l1norm();
}
2013-05-29 21:16:15 +04:00
float ScoreComponentCollection::GetL2Norm() const
{
return m_scores.l2norm();
}
2013-05-29 21:16:15 +04:00
float ScoreComponentCollection::GetLInfNorm() const
{
return m_scores.linfnorm();
}
2013-05-29 21:16:15 +04:00
size_t ScoreComponentCollection::L1Regularize(float lambda)
{
return m_scores.l1regularize(lambda);
}
2013-05-29 21:16:15 +04:00
void ScoreComponentCollection::L2Regularize(float lambda)
{
m_scores.l2regularize(lambda);
}
2013-05-29 21:16:15 +04:00
size_t ScoreComponentCollection::SparseL1Regularize(float lambda)
{
return m_scores.sparseL1regularize(lambda);
}
2013-05-29 21:16:15 +04:00
void ScoreComponentCollection::SparseL2Regularize(float lambda)
{
m_scores.sparseL2regularize(lambda);
}
void ScoreComponentCollection::Save(ostream& out, bool multiline) const
2013-05-29 21:16:15 +04:00
{
string sep = " ";
string linesep = "\n";
if (!multiline) {
2015-01-14 14:07:42 +03:00
sep = "=";
linesep = " ";
}
std::vector<FeatureFunction*> const& all_ff
2015-05-02 13:45:24 +03:00
= FeatureFunction::GetFeatureFunctions();
BOOST_FOREACH(FeatureFunction const* ff, all_ff) {
string name = ff->GetScoreProducerDescription();
size_t i = ff->GetIndex();
if (ff->GetNumScoreComponents() == 1)
out << name << sep << m_scores[i] << linesep;
else {
size_t stop = i + ff->GetNumScoreComponents();
boost::format fmt("%s_%d");
for (size_t k = 1; i < stop; ++i, ++k)
out << fmt % name % k << sep << m_scores[i] << linesep;
}
2015-05-02 13:45:24 +03:00
}
// write sparse features
m_scores.write(out,sep,linesep);
2011-11-16 15:49:31 +04:00
}
2013-05-29 21:16:15 +04:00
void ScoreComponentCollection::Save(const string& filename) const
{
2011-11-16 15:49:31 +04:00
ofstream out(filename.c_str());
if (!out) {
2015-10-05 13:54:29 +03:00
util::StringStream msg;
2011-11-16 15:49:31 +04:00
msg << "Unable to open " << filename;
throw runtime_error(msg.str());
}
Save(out);
out.close();
}
2013-09-27 12:35:24 +04:00
void
2013-09-25 03:13:49 +04:00
ScoreComponentCollection::
2014-06-06 23:35:58 +04:00
Assign(const FeatureFunction* sp, const string &line)
2013-05-29 21:16:15 +04:00
{
istringstream istr(line);
while(istr) {
string namestring;
FValue value;
istr >> namestring;
if (!istr) break;
istr >> value;
FName fname(sp->GetScoreProducerDescription(), namestring);
m_scores[fname] = value;
}
}
2013-09-27 12:35:24 +04:00
void
2013-09-25 03:13:49 +04:00
ScoreComponentCollection::
2013-09-27 12:35:24 +04:00
Assign(const FeatureFunction* sp, const std::vector<float>& scores)
2013-09-25 03:13:49 +04:00
{
size_t numScores = sp->GetNumScoreComponents();
size_t offset = sp->GetIndex();
2013-09-10 17:36:21 +04:00
if (scores.size() != numScores) {
2013-09-27 12:35:24 +04:00
UTIL_THROW(util::Exception, "Feature function "
<< sp->GetScoreProducerDescription() << " specified "
<< numScores << " dense scores or weights. Actually has "
<< scores.size());
2013-09-10 17:36:21 +04:00
}
for (size_t i = 0; i < scores.size(); ++i) {
m_scores[i + offset] = scores[i];
2013-09-10 17:36:21 +04:00
}
}
void
ScoreComponentCollection::
Assign(const FeatureFunction* sp, size_t idx, float sc)
{
size_t numScores = sp->GetNumScoreComponents();
size_t offset = sp->GetIndex();
2016-05-09 20:56:42 +03:00
if (idx >= numScores) {
UTIL_THROW(util::Exception, "Feature function "
<< sp->GetScoreProducerDescription() << " specified index "
<< idx << " dense scores or weights. Actually has "
<< numScores);
}
m_scores[idx + offset] = sc;
}
2013-09-10 17:36:21 +04:00
void ScoreComponentCollection::InvertDenseFeatures(const FeatureFunction* sp)
{
Scores old_scores = GetScoresForProducer(sp);
Scores new_scores(old_scores.size());
for (size_t i = 0; i != old_scores.size(); ++i) {
new_scores[i] = -old_scores[i];
}
Assign(sp, new_scores);
}
void ScoreComponentCollection::ZeroDenseFeatures(const FeatureFunction* sp)
{
size_t numScores = sp->GetNumScoreComponents();
Scores vec(numScores, 0);
Assign(sp, vec);
}
//! get subset of scores that belong to a certain sparse ScoreProducer
2015-11-02 03:00:37 +03:00
FVector
ScoreComponentCollection::
GetVectorForProducer(const FeatureFunction* sp) const
{
FVector fv(s_denseVectorSize);
std::string prefix = sp->GetScoreProducerDescription() + FName::SEP;
for(FVector::FNVmap::const_iterator i = m_scores.cbegin(); i != m_scores.cend(); i++) {
std::stringstream name;
name << i->first;
if (starts_with(name.str(), prefix))
fv[i->first] = i->second;
}
return fv;
}
2013-09-08 17:57:31 +04:00
void ScoreComponentCollection::PlusEquals(const FeatureFunction* sp, const ScorePair &scorePair)
{
2013-09-27 12:35:24 +04:00
PlusEquals(sp, scorePair.denseScores);
2013-09-08 17:57:31 +04:00
2013-09-27 12:35:24 +04:00
std::map<StringPiece, float>::const_iterator iter;
for (iter = scorePair.sparseScores.begin(); iter != scorePair.sparseScores.end(); ++iter) {
const StringPiece &key = iter->first;
float value = iter->second;
PlusEquals(sp, key, value);
}
2013-09-08 17:57:31 +04:00
}
2015-11-02 03:00:37 +03:00
void
ScoreComponentCollection::
OutputAllFeatureScores(std::ostream &out, bool with_labels) const
2014-12-30 16:23:30 +03:00
{
std::string lastName = "";
2015-11-02 03:00:37 +03:00
const vector<const StatefulFeatureFunction*>& sff
= StatefulFeatureFunction::GetStatefulFeatureFunctions();
2014-12-30 16:23:30 +03:00
for( size_t i=0; i<sff.size(); i++ ) {
const StatefulFeatureFunction *ff = sff[i];
2015-01-08 14:49:53 +03:00
if (ff->IsTuneable()) {
OutputFeatureScores(out, ff, lastName, with_labels);
2014-12-30 16:23:30 +03:00
}
}
2015-11-02 03:00:37 +03:00
const vector<const StatelessFeatureFunction*>& slf
= StatelessFeatureFunction::GetStatelessFeatureFunctions();
2014-12-30 16:23:30 +03:00
for( size_t i=0; i<slf.size(); i++ ) {
const StatelessFeatureFunction *ff = slf[i];
if (ff->IsTuneable()) {
OutputFeatureScores(out, ff, lastName, with_labels);
2014-12-30 16:23:30 +03:00
}
}
}
2015-11-02 03:00:37 +03:00
void
ScoreComponentCollection::
OutputFeatureScores(std::ostream& out, FeatureFunction const* ff,
2015-11-02 03:00:37 +03:00
std::string &lastName, bool with_labels) const
2014-12-30 16:23:30 +03:00
{
// const StaticData &staticData = StaticData::Instance();
// bool labeledOutput = staticData.options().nbest.include_feature_labels;
2014-12-30 16:23:30 +03:00
// regular features (not sparse)
if (ff->HasTuneableComponents()) {
if( with_labels && lastName != ff->GetScoreProducerDescription() ) {
2014-12-30 16:23:30 +03:00
lastName = ff->GetScoreProducerDescription();
out << " " << lastName << "=";
}
vector<float> scores = GetScoresForProducer( ff );
for (size_t j = 0; j<scores.size(); ++j) {
if (ff->IsTuneableComponent(j)) {
out << " " << scores[j];
}
2014-12-30 16:23:30 +03:00
}
}
// sparse features
const FVector scores = GetVectorForProducer( ff );
for(FVector::FNVmap::const_iterator i = scores.cbegin(); i != scores.cend(); i++) {
out << " " << i->first << "= " << i->second;
}
}
}