Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/giza-pp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'GIZA++-v2/hmm.cpp')
-rw-r--r--GIZA++-v2/hmm.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/GIZA++-v2/hmm.cpp b/GIZA++-v2/hmm.cpp
index fc4284c..81a86b9 100644
--- a/GIZA++-v2/hmm.cpp
+++ b/GIZA++-v2/hmm.cpp
@@ -76,7 +76,6 @@ int hmm::em_with_tricks(int noIterations)
int dumpFreq=ModelH_Dump_Freq;
time_t it_st, st, it_fn, fn;
string tfile, afile,afileh, number, alignfile, test_alignfile;
- int pair_no = 0;
bool dump_files = false ;
ofstream of2 ;
st = time(NULL) ;
@@ -84,7 +83,6 @@ int hmm::em_with_tricks(int noIterations)
cout << "\n==========================================================\n";
cout << modelName << " Training Started at: " << ctime(&st);
for(int it=1; it <= noIterations ; it++){
- pair_no = 0;
it_st = time(NULL) ;
cout << endl << "-----------\n" << modelName << ": Iteration " << it << '\n';
dump_files = (dumpFreq != 0) && ((it % dumpFreq) == 0) && !NODUMPS;