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
|
|
|
|
***********************************************************************/
|
|
|
|
|
2010-04-12 19:22:50 +04:00
|
|
|
#pragma once
|
2010-04-13 19:34:39 +04:00
|
|
|
#ifndef SENTENCE_ALIGNMENT_H_INCLUDED_
|
|
|
|
#define SENTENCE_ALIGNMENT_H_INCLUDED_
|
|
|
|
|
|
|
|
#include <string>
|
2010-04-12 19:22:50 +04:00
|
|
|
#include <vector>
|
|
|
|
|
2012-06-30 18:43:47 +04:00
|
|
|
namespace MosesTraining
|
|
|
|
{
|
|
|
|
|
2010-04-13 19:34:39 +04:00
|
|
|
class SentenceAlignment
|
|
|
|
{
|
2011-02-24 16:57:11 +03:00
|
|
|
public:
|
|
|
|
std::vector<std::string> target;
|
|
|
|
std::vector<std::string> source;
|
|
|
|
std::vector<int> alignedCountS;
|
2013-09-19 14:24:57 +04:00
|
|
|
std::vector<std::vector<int> > alignedToT, alignedToS;
|
2011-09-16 19:37:02 +04:00
|
|
|
int sentenceID;
|
2012-12-21 19:39:25 +04:00
|
|
|
std::string weightString;
|
2010-04-13 19:34:39 +04:00
|
|
|
|
2012-05-06 01:11:25 +04:00
|
|
|
virtual ~SentenceAlignment();
|
|
|
|
|
2012-08-23 22:40:09 +04:00
|
|
|
virtual bool processTargetSentence(const char *, int, bool boundaryRules);
|
2010-04-13 19:34:39 +04:00
|
|
|
|
2012-08-23 22:40:09 +04:00
|
|
|
virtual bool processSourceSentence(const char *, int, bool boundaryRules);
|
2010-04-13 19:34:39 +04:00
|
|
|
|
2014-06-08 18:41:27 +04:00
|
|
|
bool create(const char targetString[],
|
2015-01-14 14:07:42 +03:00
|
|
|
const char sourceString[],
|
|
|
|
const char alignmentString[],
|
|
|
|
const char weightString[],
|
|
|
|
int sentenceID, bool boundaryRules);
|
2013-05-29 21:16:15 +04:00
|
|
|
|
2013-09-19 14:24:57 +04:00
|
|
|
void invertAlignment();
|
|
|
|
|
2010-04-12 19:22:50 +04:00
|
|
|
};
|
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
|