mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-09 16:04:41 +03:00
86ee3e15a4
which is now capable of dealing with additional properties in an appropriate manner
146 lines
3.8 KiB
C++
146 lines
3.8 KiB
C++
// $Id$
|
|
|
|
#ifndef _DOMAIN_H
|
|
#define _DOMAIN_H
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string>
|
|
#include <queue>
|
|
#include <map>
|
|
#include <cmath>
|
|
|
|
#include "ScoreFeature.h"
|
|
|
|
extern std::vector<std::string> tokenize( const char*);
|
|
|
|
namespace MosesTraining
|
|
{
|
|
|
|
class Domain
|
|
{
|
|
public:
|
|
std::vector< std::pair< int, std::string > > spec;
|
|
std::vector< std::string > list;
|
|
std::map< std::string, int > name2id;
|
|
void load( const std::string &fileName );
|
|
std::string getDomainOfSentence( int sentenceId ) const;
|
|
};
|
|
|
|
class DomainFeature : public ScoreFeature
|
|
{
|
|
public:
|
|
|
|
DomainFeature(const std::string& domainFile);
|
|
|
|
void addPropertiesToPhrasePair(ExtractionPhrasePair &phrasePair,
|
|
float count,
|
|
int sentenceId) const;
|
|
|
|
void add(const ScoreFeatureContext& context,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const;
|
|
|
|
protected:
|
|
/** Overridden in subclass */
|
|
virtual void add(const std::map<std::string,float>& domainCounts, float count,
|
|
const MaybeLog& maybeLog,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const = 0;
|
|
|
|
|
|
Domain m_domain;
|
|
|
|
const std::string m_propertyKey;
|
|
|
|
};
|
|
|
|
class SubsetDomainFeature : public DomainFeature
|
|
{
|
|
public:
|
|
SubsetDomainFeature(const std::string& domainFile) :
|
|
DomainFeature(domainFile) {}
|
|
|
|
protected:
|
|
virtual void add(const std::map<std::string,float>& domainCounts, float count,
|
|
const MaybeLog& maybeLog,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const;
|
|
};
|
|
|
|
class SparseSubsetDomainFeature : public DomainFeature
|
|
{
|
|
public:
|
|
SparseSubsetDomainFeature(const std::string& domainFile) :
|
|
DomainFeature(domainFile) {}
|
|
|
|
protected:
|
|
virtual void add(const std::map<std::string,float>& domainCounts, float count,
|
|
const MaybeLog& maybeLog,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const;
|
|
|
|
};
|
|
|
|
class IndicatorDomainFeature : public DomainFeature
|
|
{
|
|
public:
|
|
IndicatorDomainFeature(const std::string& domainFile) :
|
|
DomainFeature(domainFile) {}
|
|
|
|
protected:
|
|
virtual void add(const std::map<std::string,float>& domainCounts, float count,
|
|
const MaybeLog& maybeLog,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const;
|
|
};
|
|
|
|
|
|
class SparseIndicatorDomainFeature : public DomainFeature
|
|
{
|
|
public:
|
|
SparseIndicatorDomainFeature(const std::string& domainFile) :
|
|
DomainFeature(domainFile) {}
|
|
|
|
protected:
|
|
virtual void add(const std::map<std::string,float>& domainCounts, float count,
|
|
const MaybeLog& maybeLog,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const;
|
|
};
|
|
|
|
|
|
class RatioDomainFeature : public DomainFeature
|
|
{
|
|
public:
|
|
RatioDomainFeature(const std::string& domainFile) :
|
|
DomainFeature(domainFile) {}
|
|
|
|
protected:
|
|
virtual void add(const std::map<std::string,float>& domainCounts, float count,
|
|
const MaybeLog& maybeLog,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const;
|
|
};
|
|
|
|
|
|
class SparseRatioDomainFeature : public DomainFeature
|
|
{
|
|
public:
|
|
SparseRatioDomainFeature(const std::string& domainFile) :
|
|
DomainFeature(domainFile) {}
|
|
|
|
protected:
|
|
virtual void add(const std::map<std::string,float>& domainCounts, float count,
|
|
const MaybeLog& maybeLog,
|
|
std::vector<float>& denseValues,
|
|
std::map<std::string,float>& sparseValues) const;
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif
|