blob: 246ae1c225443bd7c7577d9ac40eed7348cdeca9 [file] [log] [blame]
/*
EGYPT Toolkit for Statistical Machine Translation
Written by Yaser Al-Onaizan, Jan Curin, Michael Jahr, Kevin Knight, John Lafferty, Dan Melamed, David Purdy, Franz Och, Noah Smith, and David Yarowsky.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
*/
/* --------------------------------------------------------------------------*
* *
* Module : getSentence *
* *
* Prototypes File: getSentence.h *
* *
* Objective: Defines clases and methods for handling I/O for the parallel *
* corpus. *
*****************************************************************************/
#ifndef _sentenceHandler_h
#define _sentenceHandler_h 1
#include <iostream>
#include <fstream>
#include <string>
#include "Vector.h"
#include "defs.h"
#include "vocab.h"
#include "Globals.h"
/*----------------------- Class Prototype Definition ------------------------*
Class Name: sentenceHandleer
Objective: This class is defined to handle training sentece pairs from the
parallel corpus. Each pair has: a target sentece, called here French; a
source sentece, called here English sentece; and an integer number denoting
the number of times this pair occured in trining corpus. Both source and
target senteces are represented as integer vector (variable size arrays),
each entry is a numeric value which is the token id for the particular token
in the sentece.
*---------------------------------------------------------------------------*/
class sentPair{
public:
int sentenceNo ;
float noOcc;
float realCount;
Vector<WordIndex> eSent ;
Vector<WordIndex> fSent;
public:
sentPair(){};
void clear(){ eSent.clear(); fSent.clear(); noOcc=0; realCount=0; sentenceNo=0;};
const Vector<WordIndex>&get_eSent()const
{ return eSent; }
const Vector<WordIndex>&get_fSent()const
{ return fSent; }
int getSentenceNo()const
{ return sentenceNo; }
double getCount()const
{ return realCount; }
};
inline ostream&operator<<(ostream&of,const sentPair&s)
{
of << "Sent No: " << s.sentenceNo << " , No. Occurrences: " << s.noOcc << '\n';
if( s.noOcc!=s.realCount )
of << " Used No. Occurrences: " << s.realCount << '\n';
unsigned int i;
for(i=0; i < s.eSent.size(); i++)
of << s.eSent[i] << ' ';
of << '\n';
for(i=1; i < s.fSent.size(); i++)
of << s.fSent[i] << ' ';
of << '\n';
return of;
}
class sentenceHandler{
public:
const char * inputFilename; // parallel corpus file name, similar for all
// sentence pair objects
ifstream *inputFile; // parallel corpus file handler
Vector<sentPair> Buffer;
int noSentInBuffer ;
int currentSentence ;
int totalPairs1 ;
double totalPairs2;
bool readflag ; // true if you reach the end of file
bool allInMemory ;
int pair_no ;
Vector<double> *realCount;
Vector<sentPair> oldPairs;
Vector<double> oldProbs;
sentenceHandler(const char* filename, vcbList* elist=0, vcbList* flist=0);
void rewind();
bool getNextSentence(sentPair&, vcbList* = 0, vcbList* = 0); // will be defined in the definition file, this
int getTotalNoPairs1()const {return totalPairs1;};
double getTotalNoPairs2()const {return totalPairs2;};
// method will read the next pair of sentence from memory buffer
bool readNextSentence(sentPair&); // will be defined in the definition file, this
void setProbOfSentence(const sentPair&s,double d);
};
#endif