2010-04-13 19:34:39 +04:00
|
|
|
/***********************************************************************
|
|
|
|
Moses - factored phrase-based language decoder
|
|
|
|
Copyright (C) 2010 University of Edinburgh
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifndef EXTRACTEDRULE_H_INCLUDED_
|
|
|
|
#define EXTRACTEDRULE_H_INCLUDED_
|
|
|
|
|
|
|
|
#include <string>
|
2011-09-14 11:15:36 +04:00
|
|
|
#include <iostream>
|
2012-04-17 08:54:48 +04:00
|
|
|
#include <sstream>
|
2011-09-14 11:15:36 +04:00
|
|
|
#include <map>
|
2010-04-13 19:34:39 +04:00
|
|
|
|
2012-06-30 18:43:47 +04:00
|
|
|
namespace MosesTraining
|
|
|
|
{
|
|
|
|
|
2010-04-13 19:34:39 +04:00
|
|
|
// sentence-level collection of rules
|
|
|
|
class ExtractedRule
|
|
|
|
{
|
2011-02-24 16:57:11 +03:00
|
|
|
public:
|
|
|
|
std::string source;
|
|
|
|
std::string target;
|
|
|
|
std::string alignment;
|
|
|
|
std::string alignmentInv;
|
|
|
|
std::string orientation;
|
|
|
|
std::string orientationForward;
|
2013-09-08 01:04:01 +04:00
|
|
|
std::string sourceContextLeft;
|
|
|
|
std::string sourceContextRight;
|
|
|
|
std::string targetContextLeft;
|
|
|
|
std::string targetContextRight;
|
|
|
|
std::string sourceHoleString;
|
|
|
|
std::string targetHoleString;
|
2011-02-24 16:57:11 +03:00
|
|
|
int startT;
|
|
|
|
int endT;
|
|
|
|
int startS;
|
|
|
|
int endS;
|
|
|
|
float count;
|
2012-05-25 20:29:47 +04:00
|
|
|
double pcfgScore;
|
2011-02-24 16:57:11 +03:00
|
|
|
|
|
|
|
ExtractedRule(int sT, int eT, int sS, int eS)
|
|
|
|
: source()
|
|
|
|
, target()
|
|
|
|
, alignment()
|
|
|
|
, alignmentInv()
|
|
|
|
, orientation()
|
|
|
|
, orientationForward()
|
2013-09-08 01:04:01 +04:00
|
|
|
, sourceContextLeft()
|
|
|
|
, sourceContextRight()
|
|
|
|
, targetContextLeft()
|
|
|
|
, targetContextRight()
|
|
|
|
, sourceHoleString()
|
|
|
|
, targetHoleString()
|
2011-02-24 16:57:11 +03:00
|
|
|
, startT(sT)
|
|
|
|
, endT(eT)
|
|
|
|
, startS(sS)
|
|
|
|
, endS(eS)
|
|
|
|
, count(0)
|
2013-06-10 21:11:55 +04:00
|
|
|
, pcfgScore(0.0) {
|
|
|
|
}
|
2010-04-13 19:34:39 +04:00
|
|
|
};
|
|
|
|
|
2012-06-30 18:43:47 +04:00
|
|
|
}
|
|
|
|
|
2010-04-13 19:34:39 +04:00
|
|
|
#endif
|