/********************************* | |
tercpp: an open-source Translation Edit Rate (TER) scorer tool for Machine Translation. | |
Copyright 2010-2013, Christophe Servan, LIUM, University of Le Mans, France | |
Contact: [email protected] | |
The tercpp tool and library are 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 licence, or | |
(at your option) any later version. | |
This program and library are 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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
**********************************/ | |
using namespace std; | |
// using namespace TERCPPNS_HashMapSpace; | |
namespace TERCPPNS_TERCpp | |
{ | |
class terAlignment | |
{ | |
private: | |
public: | |
vector<string> ref; | |
vector<string> hyp; | |
vector<string> aftershift; | |
vector<terShift> allshifts; | |
vector<int> hyp_int; | |
vector<int> aftershift_int; | |
double numEdits; | |
double numWords; | |
double averageWords; | |
vector<char> alignment; | |
string bestRef; | |
int numIns; | |
int numDel; | |
int numSub; | |
int numSft; | |
int numWsf; | |
terAlignment(); | |
string toString(); | |
void scoreDetails(); | |
string join ( string delim, vector<string> arr ); | |
double score(); | |
double scoreAv(); | |
string printAlignments(); | |
string printAllShifts(); | |
void set(terAlignment& l_terAlignment); | |
void set(terAlignment* l_terAlignment); | |
}; | |
} | |