├── .beautify-ignore ├── .gitignore ├── .gitmodules ├── .travis.yml ├── COPYING ├── Jamroot ├── OnDiskPt ├── Jamfile ├── Main.cpp ├── Main.h ├── OnDiskQuery.cpp ├── OnDiskQuery.h ├── OnDiskWrapper.cpp ├── OnDiskWrapper.h ├── Phrase.cpp ├── Phrase.h ├── PhraseNode.cpp ├── PhraseNode.h ├── SourcePhrase.cpp ├── SourcePhrase.h ├── TargetPhrase.cpp ├── TargetPhrase.h ├── TargetPhraseCollection.cpp ├── TargetPhraseCollection.h ├── Vocab.cpp ├── Vocab.h ├── Word.cpp ├── Word.h └── queryOnDiskPt.cpp ├── README ├── azure-pipelines.yml ├── biconcor ├── Alignment.cpp ├── Alignment.h ├── CMakeLists.txt ├── Jamfile ├── Mismatch.cpp ├── Mismatch.h ├── PhrasePair.cpp ├── PhrasePair.h ├── PhrasePairCollection.cpp ├── PhrasePairCollection.h ├── SuffixArray.cpp ├── SuffixArray.h ├── TargetCorpus.cpp ├── TargetCorpus.h ├── Vocabulary.cpp ├── Vocabulary.h ├── base64.cpp ├── base64.h ├── biconcor.cpp └── phrase-lookup.cpp ├── bjam ├── cgmanifest.json ├── chk.tmp ├── contrib ├── DIMwid │ ├── DIMputs.py │ ├── DIMterface.py │ ├── DIMwid.py │ ├── LICENSE │ └── README.md ├── arrow-pipelines │ ├── README │ ├── bash │ │ └── training_pipeline.sh │ ├── documentation │ │ └── training-pipeline │ │ │ └── moses-pypeline.dia │ ├── pcl │ │ ├── Makefile │ │ ├── components │ │ │ ├── Makefile │ │ │ ├── src_trg_tokeniser.cfg │ │ │ ├── src_trg_tokeniser.pcl │ │ │ ├── test_data │ │ │ │ ├── src_trg_tokenizer │ │ │ │ │ ├── cleantrain.en │ │ │ │ │ └── cleantrain.lt │ │ │ │ └── translation_model_training │ │ │ │ │ ├── cleantrain.en │ │ │ │ │ └── cleantrain.lt │ │ │ ├── translation_model_training.cfg │ │ │ ├── translation_model_training.pcl │ │ │ └── wrappers │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ ├── cleanup │ │ │ │ ├── __init__.py │ │ │ │ └── cleanup.py │ │ │ │ ├── data_split │ │ │ │ ├── __init__.py │ │ │ │ ├── data_split.cfg │ │ │ │ ├── data_split.py │ │ │ │ └── test_data │ │ │ │ │ ├── data.de │ │ │ │ │ └── data.en │ │ │ │ ├── irstlm_build │ │ │ │ ├── __init__.py │ │ │ │ └── irstlm_build.py │ │ │ │ ├── mert │ │ │ │ ├── __init__.py │ │ │ │ └── mert.py │ │ │ │ ├── model_training │ │ │ │ ├── __init__.py │ │ │ │ └── model_training.py │ │ │ │ └── tokenizer │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ ├── test_data │ │ │ │ └── test.en │ │ │ │ ├── tokenizer.cfg │ │ │ │ └── tokenizer.pcl │ │ ├── training_pipeline.cfg │ │ └── training_pipeline.pcl │ └── test_data │ │ ├── cleantrain.en │ │ └── cleantrain.lt ├── c++tokenizer │ ├── Jamfile │ ├── Parameters.cpp │ ├── Parameters.h │ ├── tokenizer.cpp │ ├── tokenizer.h │ └── tokenizer_main.cpp ├── checkplf │ ├── Makefile │ └── checkplf.cpp ├── combine-ptables │ ├── README.md │ └── combine-ptables.pl ├── debugging │ └── auto-rollback.sh ├── eppex │ ├── ISS.h │ ├── IndexedPhrasesPair.h │ ├── LossyCounter.h │ ├── Makefile.am │ ├── Makefile.in │ ├── SafeGetline.h │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── counter.cpp │ ├── depcomp │ ├── eppex.cpp │ ├── install-sh │ ├── m4 │ │ └── ax_boost_base.m4 │ ├── missing │ ├── phrase-extract.cpp │ ├── phrase-extract.h │ ├── shared.cpp │ ├── shared.h │ └── typedefs.h ├── expected-bleu-training │ ├── ExpectedBleuOptimizer.cpp │ ├── ExpectedBleuOptimizer.h │ ├── Jamfile │ ├── PrepareExpectedBleuTraining.cpp │ └── TrainExpectedBleu.cpp ├── goshen-chrome │ ├── README.md │ ├── icon.png │ ├── manifest.json │ ├── onpage │ │ ├── chromegoshen.js │ │ ├── goshen.js │ │ ├── onpage.css │ │ └── onpage.js │ ├── options │ │ └── index.html │ ├── popup │ │ ├── popup.html │ │ └── popup.js │ ├── style.less │ └── vendor │ │ └── less.js ├── iSenWeb │ ├── Introduction │ │ ├── iSenWeb A Web-based Machine Translation System to Translate Sentences.docx │ │ └── iSenWeb A Web-based Machine Translation System to Translate Sentences.pdf │ ├── index.html │ ├── jquery-1.7.2.js │ ├── moses.pl │ ├── themes │ │ ├── images │ │ │ ├── common │ │ │ │ ├── Logo (1000x300).png │ │ │ │ ├── Logo (2000x2000).png │ │ │ │ ├── Logo (250x250).png │ │ │ │ ├── Logo (500x500).png │ │ │ │ ├── Logo.png │ │ │ │ ├── Logo_lab.png │ │ │ │ ├── header_bg.png │ │ │ │ ├── ico_cor10.png │ │ │ │ ├── icon_feedback.png │ │ │ │ ├── logo_christmas.png │ │ │ │ ├── logo_christmas1.png │ │ │ │ ├── logo_christmas2.png │ │ │ │ ├── logo_christmas3.png │ │ │ │ ├── nav_bgn.png │ │ │ │ └── sidebar_bg.png │ │ │ ├── fanyi │ │ │ │ ├── fanyi_sprite.png │ │ │ │ └── inputTextBg.png │ │ │ └── search │ │ │ │ └── s.png │ │ └── styles │ │ │ ├── common.css │ │ │ ├── fanyi.css │ │ │ └── search.css │ └── trans_result.php ├── lmserver │ ├── AUTHORS │ ├── BUILD │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── daemon.c │ ├── depcomp │ ├── examples │ │ ├── LMClient.java │ │ ├── LMClient.pm │ │ ├── lmclient.cc │ │ └── query_lmserver.pl │ ├── install-sh │ ├── lmserver.c │ ├── lmserver.h │ ├── missing │ ├── srilm.cc │ ├── srilm.h │ ├── stamp-h1 │ ├── stats.h │ └── thread.c ├── m4m │ ├── Jamfile │ ├── Makefile │ ├── README │ ├── examples │ │ └── giza-vs-fast.m4m │ ├── modules │ │ ├── #tune.make# │ │ ├── auxiliary.m4m │ │ ├── eval-system.m4m │ │ ├── fastalign.m4m │ │ ├── init.m4m │ │ ├── kenlm.m4m │ │ ├── m4m.m4m │ │ ├── mgiza.m4m │ │ ├── mmbitext.m4m │ │ ├── moses-ini.m4m │ │ ├── moses-parameters.m4m │ │ ├── obsolete │ │ │ ├── Makefile │ │ │ ├── baseline-system.m4m │ │ │ ├── decode.m4m │ │ │ ├── directory-structure.m4m │ │ │ ├── dynsa-system.m4m │ │ │ ├── eval.m4m │ │ │ ├── general.m4m │ │ │ ├── makefile.m4m │ │ │ ├── model-filtering.m4m │ │ │ ├── phrase-table.make.scratch │ │ │ ├── reporting.m4m │ │ │ ├── run-moses.m4m │ │ │ ├── setup-experiments.m4m │ │ │ ├── skip-steps.mak │ │ │ ├── system.m4m │ │ │ ├── template.m4m │ │ │ └── tune.m4m │ │ ├── phrase-table.m4m │ │ ├── prepare-corpus.m4m │ │ ├── tools.m4m │ │ └── tune-moses.m4m │ ├── scripts │ │ ├── fast-align2bal.py │ │ ├── giza.txt2snt.sh │ │ ├── moses.extract-phrases.sh │ │ ├── moses.make-lex.py │ │ ├── moses.phrase-extract.sh │ │ ├── moses.score-phrases.sh │ │ └── moses.transfer-weights.py │ └── util │ │ └── Jamfile ├── mada │ └── qsub-madamira.perl ├── makemteval │ ├── makemteval.ini │ └── makemteval.py ├── memscore │ ├── Makefile.am │ ├── Makefile.in │ ├── aclocal.m4 │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── datastorage.h │ ├── depcomp │ ├── install-sh │ ├── lexdecom.cpp │ ├── lexdecom.h │ ├── m4 │ │ └── ax_boost_base.m4 │ ├── memscore.cpp │ ├── memscore.h │ ├── missing │ ├── phraselm.cpp │ ├── phraselm.h │ ├── phrasetable.cpp │ ├── phrasetable.h │ ├── scorer-impl.h │ ├── scorer.cpp │ ├── scorer.h │ ├── statistic.h │ └── timestamp.h ├── mert-moses-multi.pl ├── mert-sge-nosync │ ├── README │ ├── generic │ │ ├── moses-parallel-sge-nosync.pl │ │ ├── qsub-wrapper-exit-sge-nosync.pl │ │ └── qsub-wrapper-sge-nosync.pl │ └── training │ │ ├── mert-moses-sge-nosync.pl │ │ └── sge-nosync │ │ ├── cleartmpfiles.pl │ │ ├── create-config-sge-nosync.pl │ │ ├── moses-parallel-postdecode-sge-nosync.pl │ │ ├── poll-decoder.pl │ │ ├── process-featlist-sge-nosync.pl │ │ ├── process-moses-result-sge-nosync.pl │ │ ├── run-decoder-sge-nosync.pl │ │ └── zipextract-decoder-result.pl ├── mira │ ├── Decoder.cpp │ ├── Decoder.h │ ├── Hildreth.cpp │ ├── Hildreth.h │ ├── HildrethTest.cpp │ ├── HypothesisQueue.cpp │ ├── HypothesisQueue.h │ ├── Jamfile │ ├── Main.cpp │ ├── Main.h │ ├── MiraOptimiser.cpp │ ├── MiraTest.cpp │ ├── Optimiser.h │ ├── Perceptron.cpp │ ├── expt.cfg │ ├── mira.xcodeproj │ │ └── project.pbxproj │ └── training-expt.perl ├── moses-speedtest │ ├── README.md │ ├── check_for_regression.py │ ├── cronjob │ ├── helpers │ │ ├── README.md │ │ └── sys_drop_caches.py │ ├── html │ │ ├── README.md │ │ ├── index.html │ │ └── style.css │ ├── html_gen.py │ ├── runtests.py │ ├── sys_drop_caches.py │ ├── test_config │ ├── testsuite_common.py │ └── testsuite_config ├── omtc │ └── README ├── other-builds │ ├── CreateOnDiskPt │ │ ├── .cproject │ │ └── .project │ ├── CreateProbingPT │ │ ├── .cproject │ │ └── .project │ ├── MosesManagedDLL │ │ ├── ManagedMoses.cpp │ │ ├── MosesManagedDLL.vcxproj │ │ └── MosesManagedDLL.vcxproj.filters │ ├── MosesWrapperTest │ │ ├── MosesWrapperTest.csproj │ │ └── Program.cs │ ├── OnDiskPt │ │ ├── .cproject │ │ ├── .project │ │ └── OnDiskPt.project │ ├── all.workspace │ ├── cmake │ │ └── boost.example │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── consolidate │ │ ├── .cproject │ │ ├── .project │ │ └── consolidate.project │ ├── dllImpCheck │ │ └── Program.cs │ ├── extract-ghkm │ │ ├── .cproject │ │ └── .project │ ├── extract-mixed-syntax │ │ ├── .cproject │ │ ├── .project │ │ └── extract-mixed-syntax.project │ ├── extract-rules │ │ ├── .cproject │ │ └── .project │ ├── extract │ │ ├── .cproject │ │ ├── .project │ │ └── extract.project │ ├── extractor │ │ ├── .cproject │ │ └── .project │ ├── lm │ │ ├── .cproject │ │ ├── .project │ │ └── lm.project │ ├── mert_lib │ │ ├── .cproject │ │ └── .project │ ├── moses-cmd │ │ ├── .cproject │ │ ├── .project │ │ └── moses-cmd.project │ ├── moses │ │ ├── .cproject │ │ ├── .project │ │ └── moses.project │ ├── moses2-cmd │ │ ├── .cproject │ │ └── .project │ ├── moses2 │ │ ├── .cproject │ │ ├── .project │ │ ├── moses2.sln │ │ ├── moses2.vcxproj │ │ └── moses2.vcxproj.filters │ ├── probingpt │ │ ├── .cproject │ │ └── .project │ ├── pruneGeneration │ │ └── pruneGeneration.project │ ├── score │ │ ├── .cproject │ │ ├── .project │ │ └── score.project │ ├── search │ │ ├── .cproject │ │ ├── .project │ │ └── search.project │ ├── server │ │ ├── .cproject │ │ └── .project │ └── util │ │ ├── .cproject │ │ ├── .project │ │ └── util.project ├── picaro │ └── README ├── promix │ ├── README.md │ ├── bleu.py │ ├── coll.py │ ├── main.py │ ├── nbest.py │ ├── sampler.py │ ├── test.py │ ├── test_bleu.py │ ├── test_data │ │ ├── README │ │ ├── esen.ep.model.filtered │ │ │ ├── phrase-table.0-0.1.1 │ │ │ ├── phrase-table.0-0.1.1.binphr.idx │ │ │ ├── phrase-table.0-0.1.1.binphr.srctree.wa │ │ │ ├── phrase-table.0-0.1.1.binphr.srcvoc │ │ │ ├── phrase-table.0-0.1.1.binphr.tgtdata.wa │ │ │ └── phrase-table.0-0.1.1.binphr.tgtvoc │ │ ├── esen.nc.model.filtered │ │ │ ├── phrase-table.0-0.1.1 │ │ │ ├── phrase-table.0-0.1.1.binphr.idx │ │ │ ├── phrase-table.0-0.1.1.binphr.srctree.wa │ │ │ ├── phrase-table.0-0.1.1.binphr.srcvoc │ │ │ ├── phrase-table.0-0.1.1.binphr.tgtdata.wa │ │ │ └── phrase-table.0-0.1.1.binphr.tgtvoc │ │ ├── phrases │ │ ├── phrases.ep │ │ ├── phrases.epnc-lin │ │ ├── phrases.nc │ │ ├── test.nbest.input │ │ ├── test.nbest.nbest │ │ ├── test.nbest.nbest.segments │ │ └── test.nbest.scores │ ├── test_main.py │ ├── test_nbest.py │ ├── test_sampler.py │ ├── test_train.py │ ├── train.py │ └── util.py ├── python │ ├── README.md │ ├── example.py │ ├── examples │ │ ├── phrase-table.binphr.idx │ │ ├── phrase-table.binphr.srctree.wa │ │ ├── phrase-table.binphr.srcvoc │ │ ├── phrase-table.binphr.tgtdata.wa │ │ ├── phrase-table.binphr.tgtvoc │ │ ├── phrase-table.txt │ │ ├── rule-table.txt │ │ └── rule-table │ │ │ ├── Misc.dat │ │ │ ├── Source.dat │ │ │ ├── TargetColl.dat │ │ │ ├── TargetInd.dat │ │ │ └── Vocab.dat │ ├── moses │ │ ├── __init__.py │ │ ├── cdictree.pxd │ │ ├── condiskpt.pxd │ │ ├── dictree.cpp │ │ └── dictree.pyx │ └── setup.py ├── relent-filter │ ├── AUTHORS │ ├── README.txt │ ├── scripts │ │ ├── calcEmpiricalDistribution.pl │ │ ├── calcPruningScores.pl │ │ ├── interpolateScores.pl │ │ └── prunePT.pl │ ├── sigtest-filter │ │ ├── Makefile │ │ ├── README.txt │ │ ├── WIN32_functions.cpp │ │ ├── WIN32_functions.h │ │ ├── check-install │ │ ├── filter-pt.cpp │ │ └── sigtest-filter.sln │ └── src │ │ ├── IOWrapper.cpp │ │ ├── IOWrapper.h │ │ ├── Jamfile │ │ ├── LatticeMBR.cpp │ │ ├── LatticeMBR.h │ │ ├── LatticeMBRGrid.cpp │ │ ├── Main.cpp │ │ ├── Main.h │ │ ├── RelativeEntropyCalc.cpp │ │ ├── RelativeEntropyCalc.h │ │ ├── TranslationAnalysis.cpp │ │ ├── TranslationAnalysis.h │ │ ├── mbr.cpp │ │ └── mbr.h ├── rephraser │ ├── Jamfile │ └── paraphrase.cpp ├── rpm │ ├── README │ ├── build_source.sh │ └── rpmbuild │ │ └── SPECS │ │ └── moses.spec ├── rt │ ├── Empty.c │ ├── README │ └── compile.sh ├── server │ ├── Jamfile │ ├── SampleClient.java │ ├── Translation-web │ │ ├── src │ │ │ ├── conf │ │ │ │ └── MANIFEST.MF │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hpl │ │ │ │ └── mt │ │ │ │ └── Translate.java │ │ └── web │ │ │ ├── META-INF │ │ │ └── context.xml │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── css │ │ │ └── common.css │ │ │ ├── index.html │ │ │ └── lib │ │ │ ├── jquery-1.6.4.js │ │ │ └── jquery-ui-1.8.16.custom.js │ ├── client-stdin.perl │ ├── client.perl │ ├── client.py │ ├── client_multimodel.py │ ├── mosesserver.cpp │ ├── sgclient.perl │ ├── sgclient_weightUpdate.perl │ └── update.py ├── sigtest-filter │ ├── Makefile │ ├── README.txt │ ├── WIN32_functions.cpp │ ├── WIN32_functions.h │ ├── check-install │ ├── filter-pt.cpp │ ├── sigtest-filter.sln │ └── sigtest-filter.vcproj ├── synlm │ └── hhmm │ │ ├── LICENSE │ │ ├── rvtl │ │ └── include │ │ │ ├── nl-archetypeset.h │ │ │ ├── nl-array.h │ │ │ ├── nl-beam.h │ │ │ ├── nl-const.h │ │ │ ├── nl-cpt.h │ │ │ ├── nl-crf.h │ │ │ ├── nl-denot.h │ │ │ ├── nl-dtree-cont.h │ │ │ ├── nl-dtree.h │ │ │ ├── nl-fixedmatrix.h │ │ │ ├── nl-gauss.h │ │ │ ├── nl-hash.h │ │ │ ├── nl-heap.h │ │ │ ├── nl-hmm.h │ │ │ ├── nl-hmm2.h │ │ │ ├── nl-hmmloop.h │ │ │ ├── nl-iomacros.h │ │ │ ├── nl-linsep.h │ │ │ ├── nl-list.h │ │ │ ├── nl-matrix.h │ │ │ ├── nl-mixture.h │ │ │ ├── nl-modelfile.h │ │ │ ├── nl-oblidtree.h │ │ │ ├── nl-prob.h │ │ │ ├── nl-probmodel.h │ │ │ ├── nl-racpt.h │ │ │ ├── nl-randvar.h │ │ │ ├── nl-refrv.h │ │ │ ├── nl-safeids.h │ │ │ ├── nl-stream.h │ │ │ ├── nl-string.h │ │ │ ├── nl-stringindex.h │ │ │ ├── nl-tetrahex.h │ │ │ ├── nl-timer.h │ │ │ └── nl-tree.h │ │ └── wsjparse │ │ └── include │ │ ├── HHMMLangModel-gf.h │ │ ├── TextObsModel.h │ │ └── TextObsVars.h ├── tmcombine │ ├── README.md │ ├── argparse.py │ ├── test │ │ ├── extract │ │ ├── model1 │ │ │ └── model │ │ │ │ ├── lex.counts.e2f │ │ │ │ ├── lex.counts.f2e │ │ │ │ ├── lex.e2f │ │ │ │ ├── lex.f2e │ │ │ │ └── phrase-table │ │ ├── model2 │ │ │ └── model │ │ │ │ ├── lex.counts.e2f │ │ │ │ ├── lex.counts.f2e │ │ │ │ ├── lex.e2f │ │ │ │ ├── lex.f2e │ │ │ │ └── phrase-table │ │ ├── model3 │ │ │ └── model │ │ │ │ ├── lex.counts.e2f │ │ │ │ ├── lex.counts.f2e │ │ │ │ ├── lex.e2f │ │ │ │ ├── lex.f2e │ │ │ │ └── phrase-table │ │ ├── model4 │ │ │ └── model │ │ │ │ ├── lex.counts.e2f │ │ │ │ ├── lex.counts.f2e │ │ │ │ ├── lex.e2f │ │ │ │ ├── lex.f2e │ │ │ │ └── phrase-table │ │ ├── model5 │ │ │ └── model │ │ │ │ ├── lex.counts.e2f │ │ │ │ ├── lex.counts.f2e │ │ │ │ ├── lex.e2f │ │ │ │ ├── lex.f2e │ │ │ │ └── phrase-table │ │ ├── model6 │ │ │ └── model │ │ │ │ ├── lex.counts.e2f │ │ │ │ ├── lex.counts.f2e │ │ │ │ ├── lex.e2f │ │ │ │ ├── lex.f2e │ │ │ │ └── phrase-table │ │ ├── phrase-table_test1 │ │ ├── phrase-table_test10 │ │ ├── phrase-table_test11 │ │ ├── phrase-table_test2 │ │ ├── phrase-table_test3 │ │ ├── phrase-table_test4 │ │ ├── phrase-table_test5 │ │ ├── phrase-table_test6 │ │ ├── phrase-table_test7 │ │ ├── phrase-table_test8 │ │ └── phrase-table_test9 │ └── tmcombine.py ├── web │ ├── bin │ │ ├── daemon.pl │ │ ├── detokenizer.perl │ │ ├── nonbreaking_prefixes │ │ │ ├── nonbreaking_prefix.de │ │ │ ├── nonbreaking_prefix.el │ │ │ └── nonbreaking_prefix.en │ │ ├── start-daemon-cluster.pl │ │ └── tokenizer.perl │ ├── index.cgi │ ├── index.js │ ├── lib │ │ ├── RemoteProcess.pm │ │ └── Subprocess.pm │ └── translate.cgi └── zmert-moses.pl ├── cruise-control ├── README ├── config.ems ├── create-binary.perl ├── example.config ├── shorten_info.pl ├── test_all_new_commits.sh └── web │ ├── html_templates.php │ ├── index.php │ ├── log_wrapper.php │ └── show_commit.php ├── defer ├── ExternalFeature.cpp ├── ExternalFeature.h ├── Joint.cpp ├── Joint.h ├── PhraseDictionaryInterpolated.cpp ├── PhraseDictionaryInterpolated.h ├── PhraseLengthFeatureTest.cpp └── TargetBigramFeatureTest.cpp ├── doc └── PhraseDictionaryBitextSampling.howto ├── doxygen.conf ├── env-check.yml ├── jam-files ├── LICENSE_1_0.txt ├── boost-build │ ├── boost-build.jam │ ├── bootstrap.jam │ ├── build-system.jam │ ├── build │ │ ├── ac.jam │ │ ├── alias.jam │ │ ├── build-request.jam │ │ ├── configure.jam │ │ ├── feature.jam │ │ ├── generators.jam │ │ ├── modifiers.jam │ │ ├── project.jam │ │ ├── property-set.jam │ │ ├── property.jam │ │ ├── readme.txt │ │ ├── scanner.jam │ │ ├── targets.jam │ │ ├── toolset.jam │ │ ├── type.jam │ │ ├── version.jam │ │ └── virtual-target.jam │ ├── kernel │ │ ├── boost-build.jam │ │ ├── bootstrap.jam │ │ ├── class.jam │ │ ├── errors.jam │ │ └── modules.jam │ ├── options │ │ └── help.jam │ ├── site-config.jam │ ├── tools │ │ ├── acc.jam │ │ ├── auto-index.jam │ │ ├── bison.jam │ │ ├── boostbook-config.jam │ │ ├── boostbook.jam │ │ ├── borland.jam │ │ ├── builtin.jam │ │ ├── cast.jam │ │ ├── clang-darwin.jam │ │ ├── clang-linux.jam │ │ ├── clang.jam │ │ ├── common.jam │ │ ├── como-linux.jam │ │ ├── como-win.jam │ │ ├── como.jam │ │ ├── convert.jam │ │ ├── cray.jam │ │ ├── cw-config.jam │ │ ├── cw.jam │ │ ├── darwin.jam │ │ ├── dmc.jam │ │ ├── docutils.jam │ │ ├── doxygen-config.jam │ │ ├── doxygen.jam │ │ ├── doxygen │ │ │ ├── windows-paths-check.doxyfile │ │ │ └── windows-paths-check.hpp │ │ ├── fop.jam │ │ ├── fortran.jam │ │ ├── gcc.jam │ │ ├── generate.jam │ │ ├── gettext.jam │ │ ├── gfortran.jam │ │ ├── hp_cxx.jam │ │ ├── hpfortran.jam │ │ ├── ifort.jam │ │ ├── intel-darwin.jam │ │ ├── intel-linux.jam │ │ ├── intel-win.jam │ │ ├── intel.jam │ │ ├── lex.jam │ │ ├── make.jam │ │ ├── mc.jam │ │ ├── message.jam │ │ ├── midl.jam │ │ ├── mipspro.jam │ │ ├── mpi.jam │ │ ├── msvc-config.jam │ │ ├── msvc.jam │ │ ├── notfile.jam │ │ ├── package.jam │ │ ├── pathscale.jam │ │ ├── pch.jam │ │ ├── pgi.jam │ │ ├── python-config.jam │ │ ├── python.jam │ │ ├── qcc.jam │ │ ├── qt.jam │ │ ├── qt3.jam │ │ ├── qt4.jam │ │ ├── quickbook-config.jam │ │ ├── quickbook.jam │ │ ├── rc.jam │ │ ├── stage.jam │ │ ├── stlport.jam │ │ ├── sun.jam │ │ ├── symlink.jam │ │ ├── testing-aux.jam │ │ ├── testing.jam │ │ ├── types │ │ │ ├── asm.jam │ │ │ ├── cpp.jam │ │ │ ├── exe.jam │ │ │ ├── html.jam │ │ │ ├── lib.jam │ │ │ ├── obj.jam │ │ │ ├── objc.jam │ │ │ ├── preprocessed.jam │ │ │ ├── qt.jam │ │ │ ├── register.jam │ │ │ └── rsp.jam │ │ ├── unix.jam │ │ ├── vacpp.jam │ │ ├── whale.jam │ │ ├── xlf.jam │ │ ├── xsltproc-config.jam │ │ ├── xsltproc.jam │ │ ├── xsltproc │ │ │ ├── included.xsl │ │ │ ├── test.xml │ │ │ └── test.xsl │ │ └── zlib.jam │ ├── user-config.jam │ └── util │ │ ├── assert.jam │ │ ├── container.jam │ │ ├── doc.jam │ │ ├── indirect.jam │ │ ├── numbers.jam │ │ ├── option.jam │ │ ├── order.jam │ │ ├── os.jam │ │ ├── path.jam │ │ ├── print.jam │ │ ├── regex.jam │ │ ├── sequence.jam │ │ ├── set.jam │ │ ├── string.jam │ │ └── utility.jam ├── check-environment.jam ├── curlpp.jam ├── empty_test_main.cc ├── engine │ ├── Jambase │ ├── boehm_gc │ │ ├── AmigaOS.c │ │ ├── BCC_MAKEFILE │ │ ├── ChangeLog │ │ ├── EMX_MAKEFILE │ │ ├── MacOS.c │ │ ├── MacProjects.sit.hqx │ │ ├── Mac_files │ │ │ ├── MacOS_Test_config.h │ │ │ ├── MacOS_config.h │ │ │ ├── dataend.c │ │ │ └── datastart.c │ │ ├── Makefile.DLLs │ │ ├── Makefile.am │ │ ├── Makefile.direct │ │ ├── Makefile.dj │ │ ├── Makefile.in │ │ ├── NT_MAKEFILE │ │ ├── NT_STATIC_THREADS_MAKEFILE │ │ ├── NT_THREADS_MAKEFILE │ │ ├── NT_X64_STATIC_THREADS_MAKEFILE │ │ ├── OS2_MAKEFILE │ │ ├── PCR-Makefile │ │ ├── README.QUICK │ │ ├── SMakefile.amiga │ │ ├── WCC_MAKEFILE │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── add_gc_prefix.c │ │ ├── allchblk.c │ │ ├── alloc.c │ │ ├── alpha_mach_dep.S │ │ ├── backgraph.c │ │ ├── bdw-gc.pc │ │ ├── bdw-gc.pc.in │ │ ├── blacklst.c │ │ ├── callprocs │ │ ├── checksums.c │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.host │ │ ├── configure_atomic_ops.sh │ │ ├── cord │ │ │ ├── cord.am │ │ │ ├── cordbscs.c │ │ │ ├── cordprnt.c │ │ │ ├── cordtest.c │ │ │ ├── cordxtra.c │ │ │ ├── de.c │ │ │ ├── de_cmds.h │ │ │ ├── de_win.ICO │ │ │ ├── de_win.RC │ │ │ ├── de_win.c │ │ │ └── de_win.h │ │ ├── darwin_stop_world.c │ │ ├── dbg_mlc.c │ │ ├── depcomp │ │ ├── digimars.mak │ │ ├── doc │ │ │ ├── README │ │ │ ├── README.DGUX386 │ │ │ ├── README.Mac │ │ │ ├── README.MacOSX │ │ │ ├── README.OS2 │ │ │ ├── README.amiga │ │ │ ├── README.arm.cross │ │ │ ├── README.autoconf │ │ │ ├── README.changes │ │ │ ├── README.contributors │ │ │ ├── README.cords │ │ │ ├── README.darwin │ │ │ ├── README.dj │ │ │ ├── README.environment │ │ │ ├── README.ews4800 │ │ │ ├── README.hp │ │ │ ├── README.linux │ │ │ ├── README.macros │ │ │ ├── README.rs6000 │ │ │ ├── README.sgi │ │ │ ├── README.solaris2 │ │ │ ├── README.uts │ │ │ ├── README.win32 │ │ │ ├── README.win64 │ │ │ ├── barrett_diagram │ │ │ ├── debugging.html │ │ │ ├── doc.am │ │ │ ├── gc.man │ │ │ ├── gcdescr.html │ │ │ ├── gcinterface.html │ │ │ ├── leak.html │ │ │ ├── overview.html │ │ │ ├── porting.html │ │ │ ├── scale.html │ │ │ ├── simple_example.html │ │ │ └── tree.html │ │ ├── dyn_load.c │ │ ├── finalize.c │ │ ├── gc.mak │ │ ├── gc_cpp.cc │ │ ├── gc_cpp.cpp │ │ ├── gc_dlopen.c │ │ ├── gcj_mlc.c │ │ ├── gcname.c │ │ ├── headers.c │ │ ├── hpux_test_and_clear.s │ │ ├── ia64_save_regs_in_stack.s │ │ ├── if_mach.c │ │ ├── if_not_there.c │ │ ├── include │ │ │ ├── cord.h │ │ │ ├── ec.h │ │ │ ├── gc.h │ │ │ ├── gc_allocator.h │ │ │ ├── gc_amiga_redirects.h │ │ │ ├── gc_backptr.h │ │ │ ├── gc_config_macros.h │ │ │ ├── gc_cpp.h │ │ │ ├── gc_gcj.h │ │ │ ├── gc_inline.h │ │ │ ├── gc_mark.h │ │ │ ├── gc_pthread_redirects.h │ │ │ ├── gc_tiny_fl.h │ │ │ ├── gc_typed.h │ │ │ ├── include.am │ │ │ ├── javaxfc.h │ │ │ ├── leak_detector.h │ │ │ ├── new_gc_alloc.h │ │ │ ├── private │ │ │ │ ├── cord_pos.h │ │ │ │ ├── darwin_semaphore.h │ │ │ │ ├── darwin_stop_world.h │ │ │ │ ├── dbg_mlc.h │ │ │ │ ├── gc_hdrs.h │ │ │ │ ├── gc_locks.h │ │ │ │ ├── gc_pmark.h │ │ │ │ ├── gc_priv.h │ │ │ │ ├── gcconfig.h │ │ │ │ ├── msvc_dbg.h │ │ │ │ ├── pthread_stop_world.h │ │ │ │ ├── pthread_support.h │ │ │ │ ├── specific.h │ │ │ │ └── thread_local_alloc.h │ │ │ └── weakpointer.h │ │ ├── install-sh │ │ ├── libtool.m4 │ │ ├── ltmain.sh │ │ ├── mach_dep.c │ │ ├── malloc.c │ │ ├── mallocx.c │ │ ├── mark.c │ │ ├── mark_rts.c │ │ ├── mips_sgi_mach_dep.s │ │ ├── mips_ultrix_mach_dep.s │ │ ├── misc.c │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── msvc_dbg.c │ │ ├── new_hblk.c │ │ ├── obj_map.c │ │ ├── os_dep.c │ │ ├── pcr_interface.c │ │ ├── pthread_stop_world.c │ │ ├── pthread_support.c │ │ ├── ptr_chck.c │ │ ├── real_malloc.c │ │ ├── reclaim.c │ │ ├── rs6000_mach_dep.s │ │ ├── setjmp_t.c │ │ ├── sparc_mach_dep.S │ │ ├── sparc_netbsd_mach_dep.s │ │ ├── sparc_sunos4_mach_dep.s │ │ ├── specific.c │ │ ├── stubborn.c │ │ ├── tests │ │ │ ├── leak_test.c │ │ │ ├── middle.c │ │ │ ├── test.c │ │ │ ├── test_cpp.cc │ │ │ ├── tests.am │ │ │ └── thread_leak_test.c │ │ ├── thread_local_alloc.c │ │ ├── threadlibs.c │ │ ├── typd_mlc.c │ │ ├── version.h │ │ └── win32_threads.c │ ├── boost-jam.spec │ ├── boost-no-inspect │ ├── build.bat │ ├── build.jam │ ├── build.sh │ ├── builtins.c │ ├── builtins.h │ ├── bump_version.py │ ├── class.c │ ├── class.h │ ├── command.c │ ├── command.h │ ├── compile.c │ ├── compile.h │ ├── constants.c │ ├── constants.h │ ├── cwd.c │ ├── cwd.h │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── jam.man.sgml │ │ └── rules │ ├── debug.c │ ├── debug.h │ ├── execcmd.c │ ├── execcmd.h │ ├── execnt.c │ ├── execunix.c │ ├── filent.c │ ├── filesys.c │ ├── filesys.h │ ├── fileunix.c │ ├── frames.c │ ├── frames.h │ ├── function.c │ ├── function.h │ ├── glob.c │ ├── hash.c │ ├── hash.h │ ├── hcache.c │ ├── hcache.h │ ├── hdrmacro.c │ ├── hdrmacro.h │ ├── headers.c │ ├── headers.h │ ├── jam.c │ ├── jam.h │ ├── jambase.c │ ├── jambase.h │ ├── jamgram.c │ ├── jamgram.h │ ├── jamgram.y │ ├── jamgram.yy │ ├── jamgramtab.h │ ├── lists.c │ ├── lists.h │ ├── make.c │ ├── make.h │ ├── make1.c │ ├── md5.c │ ├── md5.h │ ├── mem.c │ ├── mem.h │ ├── mkjambase.c │ ├── modules.c │ ├── modules.h │ ├── modules │ │ ├── order.c │ │ ├── path.c │ │ ├── property-set.c │ │ ├── readme.txt │ │ ├── regex.c │ │ ├── sequence.c │ │ └── set.c │ ├── native.c │ ├── native.h │ ├── object.c │ ├── object.h │ ├── option.c │ ├── option.h │ ├── output.c │ ├── output.h │ ├── parse.c │ ├── parse.h │ ├── patchlevel.h │ ├── pathnt.c │ ├── pathsys.c │ ├── pathsys.h │ ├── pathunix.c │ ├── regexp.c │ ├── regexp.h │ ├── rules.c │ ├── rules.h │ ├── scan.c │ ├── scan.h │ ├── search.c │ ├── search.h │ ├── strings.c │ ├── strings.h │ ├── subst.c │ ├── subst.h │ ├── timestamp.c │ ├── timestamp.h │ ├── variable.c │ ├── variable.h │ ├── w32_getreg.c │ └── yyacc.c ├── fail │ └── Jamroot ├── sanity.jam └── xmlrpc-c.jam ├── lm ├── CMakeLists.txt ├── Jamfile ├── bhiksha.cc ├── bhiksha.hh ├── binary_format.cc ├── binary_format.hh ├── blank.hh ├── build_binary_main.cc ├── builder │ ├── CMakeLists.txt │ ├── Jamfile │ ├── README.md │ ├── TODO │ ├── adjust_counts.cc │ ├── adjust_counts.hh │ ├── adjust_counts_test.cc │ ├── combine_counts.hh │ ├── corpus_count.cc │ ├── corpus_count.hh │ ├── corpus_count_test.cc │ ├── debug_print.hh │ ├── discount.hh │ ├── dump_counts_main.cc │ ├── hash_gamma.hh │ ├── header_info.hh │ ├── initial_probabilities.cc │ ├── initial_probabilities.hh │ ├── interpolate.cc │ ├── interpolate.hh │ ├── lmplz_main.cc │ ├── output.cc │ ├── output.hh │ ├── payload.hh │ ├── pipeline.cc │ └── pipeline.hh ├── common │ ├── CMakeLists.txt │ ├── Jamfile │ ├── compare.hh │ ├── joint_order.hh │ ├── model_buffer.cc │ ├── model_buffer.hh │ ├── ngram.hh │ ├── ngram_stream.hh │ ├── print.cc │ ├── print.hh │ ├── renumber.cc │ ├── renumber.hh │ ├── size_option.cc │ ├── size_option.hh │ └── special.hh ├── config.cc ├── config.hh ├── enumerate_vocab.hh ├── facade.hh ├── filter │ ├── CMakeLists.txt │ ├── Jamfile │ ├── arpa_io.cc │ ├── arpa_io.hh │ ├── count_io.hh │ ├── filter_main.cc │ ├── format.hh │ ├── phrase.cc │ ├── phrase.hh │ ├── phrase_table_vocab_main.cc │ ├── thread.hh │ ├── vocab.cc │ ├── vocab.hh │ └── wrapper.hh ├── fragment_main.cc ├── kenlm_benchmark_main.cc ├── left.hh ├── left_test.cc ├── lm_exception.cc ├── lm_exception.hh ├── max_order.hh ├── model.cc ├── model.hh ├── model_test.cc ├── model_type.hh ├── ngram_query.hh ├── partial.hh ├── partial_test.cc ├── quantize.cc ├── quantize.hh ├── query_main.cc ├── read_arpa.cc ├── read_arpa.hh ├── return.hh ├── search_hashed.cc ├── search_hashed.hh ├── search_trie.cc ├── search_trie.hh ├── sizes.cc ├── sizes.hh ├── state.hh ├── test.arpa ├── test_nounk.arpa ├── trie.cc ├── trie.hh ├── trie_sort.cc ├── trie_sort.hh ├── value.hh ├── value_build.cc ├── value_build.hh ├── virtual_interface.cc ├── virtual_interface.hh ├── vocab.cc ├── vocab.hh ├── weights.hh ├── word_index.hh └── wrappers │ ├── README │ ├── nplm.cc │ └── nplm.hh ├── mert ├── BleuDocScorer.cpp ├── BleuDocScorer.h ├── BleuScorer.cpp ├── BleuScorer.h ├── BleuScorerTest.cpp ├── CHRFScorer.cpp ├── CHRFScorer.h ├── CderScorer.cpp ├── CderScorer.h ├── Data.cpp ├── Data.h ├── DataTest.cpp ├── Fdstream.h ├── FeatureArray.cpp ├── FeatureArray.h ├── FeatureData.cpp ├── FeatureData.h ├── FeatureDataIterator.cpp ├── FeatureDataIterator.h ├── FeatureDataTest.cpp ├── FeatureStats.cpp ├── FeatureStats.h ├── FileStream.cpp ├── FileStream.h ├── ForestRescore.cpp ├── ForestRescore.h ├── ForestRescoreTest.cpp ├── GzFileBuf.cpp ├── GzFileBuf.h ├── HopeFearDecoder.cpp ├── HopeFearDecoder.h ├── HwcmScorer.cpp ├── HwcmScorer.h ├── HypPackEnumerator.cpp ├── HypPackEnumerator.h ├── Hypergraph.cpp ├── Hypergraph.h ├── HypergraphTest.cpp ├── InternalTree.cpp ├── InternalTree.h ├── InterpolatedScorer.cpp ├── InterpolatedScorer.h ├── Jamfile ├── M2.cpp ├── M2.h ├── M2Scorer.cpp ├── M2Scorer.h ├── MeteorScorer.cpp ├── MeteorScorer.h ├── MiraFeatureVector.cpp ├── MiraFeatureVector.h ├── MiraFeatureVectorTest.cpp ├── MiraWeightVector.cpp ├── MiraWeightVector.h ├── Ngram.h ├── NgramTest.cpp ├── Optimizer.cpp ├── Optimizer.h ├── OptimizerFactory.cpp ├── OptimizerFactory.h ├── OptimizerFactoryTest.cpp ├── PerScorer.cpp ├── PerScorer.h ├── Permutation.cpp ├── Permutation.h ├── PermutationScorer.cpp ├── PermutationScorer.h ├── Point.cpp ├── Point.h ├── PointTest.cpp ├── PreProcessFilter.cpp ├── PreProcessFilter.h ├── Reference.h ├── ReferenceTest.cpp ├── ScopedVector.h ├── ScoreArray.cpp ├── ScoreArray.h ├── ScoreData.cpp ├── ScoreData.h ├── ScoreDataIterator.cpp ├── ScoreDataIterator.h ├── ScoreStats.cpp ├── ScoreStats.h ├── Scorer.cpp ├── Scorer.h ├── ScorerFactory.cpp ├── ScorerFactory.h ├── SemposOverlapping.cpp ├── SemposOverlapping.h ├── SemposScorer.cpp ├── SemposScorer.h ├── SentenceLevelScorer.cpp ├── SentenceLevelScorer.h ├── Singleton.h ├── SingletonTest.cpp ├── StatisticsBasedScorer.cpp ├── StatisticsBasedScorer.h ├── TER │ ├── alignmentStruct.cpp │ ├── alignmentStruct.h │ ├── bestShiftStruct.cpp │ ├── bestShiftStruct.h │ ├── hashMap.cpp │ ├── hashMap.h │ ├── hashMapInfos.cpp │ ├── hashMapInfos.h │ ├── hashMapStringInfos.cpp │ ├── hashMapStringInfos.h │ ├── infosHasher.cpp │ ├── infosHasher.h │ ├── stringHasher.cpp │ ├── stringHasher.h │ ├── stringInfosHasher.cpp │ ├── stringInfosHasher.h │ ├── terAlignment.cpp │ ├── terAlignment.h │ ├── terShift.cpp │ ├── terShift.h │ ├── tercalc.cpp │ ├── tercalc.h │ ├── tools.cpp │ └── tools.h ├── TODO ├── TerScorer.cpp ├── TerScorer.h ├── Timer.cpp ├── Timer.h ├── TimerTest.cpp ├── Types.h ├── Util.cpp ├── Util.h ├── UtilTest.cpp ├── Vocabulary.cpp ├── Vocabulary.h ├── VocabularyTest.cpp ├── evaluator.cpp ├── example │ ├── NBEST │ ├── README.oldmert │ ├── REF │ ├── REF.0 │ ├── REF.1 │ ├── REF.2 │ ├── gzipped_test.sh │ ├── init.opt │ ├── memcheck_extractor.sh │ ├── memcheck_mert.sh │ ├── normal_test.sh │ └── smoke_test.sh ├── extractor.cpp ├── hgdecode.cpp ├── kbmira.cpp ├── mert.cpp ├── pro.cpp ├── sentence-bleu-nbest.cpp ├── sentence-bleu.cpp └── test_scorer_data │ ├── nbest.out │ └── reference.txt ├── mingw ├── Makefile └── MosesGUI │ ├── Ui_addMTModel.py │ ├── Ui_chooseMTModel.py │ ├── Ui_credits.py │ ├── Ui_mainWindow.py │ ├── __init__.py │ ├── addMTModel.py │ ├── addMTModel.ui │ ├── chooseMTModel.py │ ├── chooseMTModel.ui │ ├── credits.py │ ├── credits.ui │ ├── datamodel.py │ ├── engine.py │ ├── icon │ ├── moses.gif │ └── moses.ico │ ├── icons.qrc │ ├── icons_rc.py │ ├── main.py │ ├── mainWindow.py │ ├── mainWindow.ui │ ├── moses.py │ └── util.py ├── misc ├── 1-1-Extraction.cpp ├── GenerateSequences.cpp ├── GenerateTuples.cpp ├── GenerateTuples.h ├── Jamfile ├── QueryProbingPT.cpp ├── TransliterationMining.cpp ├── addLexROtoPT.cpp ├── merge-sorted.cc ├── pmoses │ ├── AUTHORS │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── configure │ ├── configure.ac │ └── pmoses.cc ├── processLexicalTable.cpp ├── processLexicalTableMin.cpp ├── processPhraseTable.cpp ├── processPhraseTableMin.cpp ├── pruneGeneration.cpp ├── pruneGeneration.h ├── prunePhraseTable.cpp ├── queryLexicalTable.cpp ├── queryPhraseTable.cpp └── queryPhraseTableMin.cpp ├── moses-cmd ├── Jamfile ├── LatticeMBRGrid.cpp ├── Main.cpp ├── MainVW.cpp └── MainVW.h ├── moses ├── AlignmentInfo.cpp ├── AlignmentInfo.h ├── AlignmentInfoCollection.cpp ├── AlignmentInfoCollection.h ├── AlignmentInfoTest.cpp ├── BaseManager.cpp ├── BaseManager.h ├── Bitmap.cpp ├── Bitmap.h ├── BitmapContainer.cpp ├── BitmapContainer.h ├── Bitmaps.cpp ├── Bitmaps.h ├── CMakeLists.txt ├── ChartCell.cpp ├── ChartCell.h ├── ChartCellCollection.cpp ├── ChartCellCollection.h ├── ChartCellLabel.h ├── ChartCellLabelSet.h ├── ChartHypothesis.cpp ├── ChartHypothesis.h ├── ChartHypothesisCollection.cpp ├── ChartHypothesisCollection.h ├── ChartKBestExtractor.cpp ├── ChartKBestExtractor.h ├── ChartManager.cpp ├── ChartManager.h ├── ChartParser.cpp ├── ChartParser.h ├── ChartParserCallback.h ├── ChartRuleLookupManager.cpp ├── ChartRuleLookupManager.h ├── ChartTranslationOption.cpp ├── ChartTranslationOption.h ├── ChartTranslationOptionList.cpp ├── ChartTranslationOptionList.h ├── ChartTranslationOptions.cpp ├── ChartTranslationOptions.h ├── ConfusionNet.cpp ├── ConfusionNet.h ├── ContextScope.h ├── DecodeGraph.cpp ├── DecodeGraph.h ├── DecodeStep.cpp ├── DecodeStep.h ├── DecodeStepGeneration.cpp ├── DecodeStepGeneration.h ├── DecodeStepTranslation.cpp ├── DecodeStepTranslation.h ├── ExportInterface.cpp ├── ExportInterface.h ├── FF │ ├── BleuScoreFeature.cpp │ ├── BleuScoreFeature.h │ ├── ConstrainedDecoding.cpp │ ├── ConstrainedDecoding.h │ ├── ControlRecombination.cpp │ ├── ControlRecombination.h │ ├── CorrectionPattern.cpp │ ├── CorrectionPattern.h │ ├── CountNonTerms.cpp │ ├── CountNonTerms.h │ ├── CoveredReferenceFeature.cpp │ ├── CoveredReferenceFeature.h │ ├── DecodeFeature.cpp │ ├── DecodeFeature.h │ ├── DeleteRules.cpp │ ├── DeleteRules.h │ ├── Diffs.h │ ├── DistortionScoreProducer.cpp │ ├── DistortionScoreProducer.h │ ├── Dsg-Feature │ │ ├── Desegmenter.cpp │ │ ├── Desegmenter.h │ │ ├── DsgModel.cpp │ │ ├── DsgModel.h │ │ ├── KenDsg.cpp │ │ ├── KenDsg.h │ │ ├── dsgHyp.cpp │ │ └── dsgHyp.h │ ├── DynamicCacheBasedLanguageModel.cpp │ ├── DynamicCacheBasedLanguageModel.h │ ├── EditOps.cpp │ ├── EditOps.h │ ├── ExampleStatefulFF.cpp │ ├── ExampleStatefulFF.h │ ├── ExampleStatelessFF.cpp │ ├── ExampleStatelessFF.h │ ├── ExampleTranslationOptionListFeature.h │ ├── FFState.cpp │ ├── FFState.h │ ├── Factory.cpp │ ├── Factory.h │ ├── FeatureFunction.cpp │ ├── FeatureFunction.h │ ├── GlobalLexicalModel.cpp │ ├── GlobalLexicalModel.h │ ├── GlobalLexicalModelUnlimited.cpp │ ├── GlobalLexicalModelUnlimited.h │ ├── HyperParameterAsWeight.cpp │ ├── HyperParameterAsWeight.h │ ├── InputFeature.cpp │ ├── InputFeature.h │ ├── InternalTree.cpp │ ├── InternalTree.h │ ├── LexicalReordering │ │ ├── BidirectionalReorderingState.cpp │ │ ├── BidirectionalReorderingState.h │ │ ├── HReorderingBackwardState.cpp │ │ ├── HReorderingBackwardState.h │ │ ├── HReorderingForwardState.cpp │ │ ├── HReorderingForwardState.h │ │ ├── LRModel.cpp │ │ ├── LRModel.h │ │ ├── LRState.cpp │ │ ├── LRState.h │ │ ├── LexicalReordering.cpp │ │ ├── LexicalReordering.h │ │ ├── LexicalReorderingTable.cpp │ │ ├── LexicalReorderingTable.h │ │ ├── PhraseBasedReorderingState.cpp │ │ ├── PhraseBasedReorderingState.h │ │ ├── ReorderingStack.cpp │ │ ├── ReorderingStack.h │ │ ├── SparseReordering.cpp │ │ └── SparseReordering.h │ ├── MaxSpanFreeNonTermSource.cpp │ ├── MaxSpanFreeNonTermSource.h │ ├── Model1Feature.cpp │ ├── Model1Feature.h │ ├── NieceTerminal.cpp │ ├── NieceTerminal.h │ ├── OSM-Feature │ │ ├── KenOSM.cpp │ │ ├── KenOSM.h │ │ ├── OpSequenceModel.cpp │ │ ├── OpSequenceModel.h │ │ ├── osmHyp.cpp │ │ └── osmHyp.h │ ├── PhraseBoundaryFeature.cpp │ ├── PhraseBoundaryFeature.h │ ├── PhraseDistanceFeature.cpp │ ├── PhraseDistanceFeature.h │ ├── PhraseLengthFeature.cpp │ ├── PhraseLengthFeature.h │ ├── PhraseOrientationFeature.cpp │ ├── PhraseOrientationFeature.h │ ├── PhrasePairFeature.cpp │ ├── PhrasePairFeature.h │ ├── PhrasePenalty.cpp │ ├── PhrasePenalty.h │ ├── ReferenceComparison.cpp │ ├── ReferenceComparison.h │ ├── RulePairUnlexicalizedSource.cpp │ ├── RulePairUnlexicalizedSource.h │ ├── RuleScope.cpp │ ├── RuleScope.h │ ├── SetSourcePhrase.cpp │ ├── SetSourcePhrase.h │ ├── SoftMatchingFeature.cpp │ ├── SoftMatchingFeature.h │ ├── SoftSourceSyntacticConstraintsFeature.cpp │ ├── SoftSourceSyntacticConstraintsFeature.h │ ├── SourceGHKMTreeInputMatchFeature.cpp │ ├── SourceGHKMTreeInputMatchFeature.h │ ├── SourceWordDeletionFeature.cpp │ ├── SourceWordDeletionFeature.h │ ├── SpanLength.cpp │ ├── SpanLength.h │ ├── SparseHieroReorderingFeature.cpp │ ├── SparseHieroReorderingFeature.h │ ├── SparseHieroReorderingFeatureTest.cpp │ ├── StatefulFeatureFunction.cpp │ ├── StatefulFeatureFunction.h │ ├── StatelessFeatureFunction.cpp │ ├── StatelessFeatureFunction.h │ ├── SyntaxRHS.cpp │ ├── SyntaxRHS.h │ ├── TargetBigramFeature.cpp │ ├── TargetBigramFeature.h │ ├── TargetConstituentAdjacencyFeature.cpp │ ├── TargetConstituentAdjacencyFeature.h │ ├── TargetNgramFeature.cpp │ ├── TargetNgramFeature.h │ ├── TargetPreferencesFeature.cpp │ ├── TargetPreferencesFeature.h │ ├── TargetWordInsertionFeature.cpp │ ├── TargetWordInsertionFeature.h │ ├── TreeStructureFeature.cpp │ ├── TreeStructureFeature.h │ ├── UnalignedWordCountFeature.cpp │ ├── UnalignedWordCountFeature.h │ ├── UnknownWordPenaltyProducer.cpp │ ├── UnknownWordPenaltyProducer.h │ ├── VW │ │ ├── AlignmentConstraint.h │ │ ├── ThreadLocalByFeatureStorage.h │ │ ├── TrainingLoss.h │ │ ├── VW.cpp │ │ ├── VW.h │ │ ├── VWFeatureBase.cpp │ │ ├── VWFeatureBase.h │ │ ├── VWFeatureContext.h │ │ ├── VWFeatureContextBigrams.h │ │ ├── VWFeatureContextBilingual.h │ │ ├── VWFeatureContextWindow.h │ │ ├── VWFeatureSource.h │ │ ├── VWFeatureSourceBagOfWords.h │ │ ├── VWFeatureSourceBigrams.h │ │ ├── VWFeatureSourceExternalFeatures.h │ │ ├── VWFeatureSourceIndicator.h │ │ ├── VWFeatureSourcePhraseInternal.h │ │ ├── VWFeatureSourceSenseWindow.h │ │ ├── VWFeatureSourceWindow.h │ │ ├── VWFeatureTarget.h │ │ ├── VWFeatureTargetBigrams.h │ │ ├── VWFeatureTargetIndicator.h │ │ ├── VWFeatureTargetPhraseInternal.h │ │ ├── VWFeatureTargetPhraseScores.h │ │ ├── VWState.cpp │ │ ├── VWState.h │ │ └── VWTargetSentence.h │ ├── WordPenaltyProducer.cpp │ ├── WordPenaltyProducer.h │ ├── WordTranslationFeature.cpp │ └── WordTranslationFeature.h ├── Factor.cpp ├── Factor.h ├── FactorCollection.cpp ├── FactorCollection.h ├── FactorTypeSet.cpp ├── FactorTypeSet.h ├── FeatureVector.cpp ├── FeatureVector.h ├── FeatureVectorTest.cpp ├── File.cpp ├── File.h ├── FilePtr.h ├── FloydWarshall.cpp ├── FloydWarshall.h ├── ForestInput.cpp ├── ForestInput.h ├── GenerationDictionary.cpp ├── GenerationDictionary.h ├── HypergraphOutput.cpp ├── HypergraphOutput.h ├── HypoList.h ├── Hypothesis.cpp ├── Hypothesis.h ├── HypothesisStack.cpp ├── HypothesisStack.h ├── HypothesisStackCubePruning.cpp ├── HypothesisStackCubePruning.h ├── HypothesisStackNormal.cpp ├── HypothesisStackNormal.h ├── IOWrapper.cpp ├── IOWrapper.h ├── Incremental.cpp ├── Incremental.h ├── InputFileStream.cpp ├── InputFileStream.h ├── InputPath.cpp ├── InputPath.h ├── InputType.cpp ├── InputType.h ├── Jamfile ├── LM │ ├── Backward.cpp │ ├── Backward.h │ ├── BackwardLMState.cpp │ ├── BackwardLMState.h │ ├── BackwardTest.cpp │ ├── Base.cpp │ ├── Base.h │ ├── BilingualLM.cpp │ ├── BilingualLM.h │ ├── ChartState.h │ ├── DALMWrapper.cpp │ ├── DALMWrapper.h │ ├── ExampleLM.cpp │ ├── ExampleLM.h │ ├── IRST.cpp │ ├── IRST.h │ ├── Implementation.cpp │ ├── Implementation.h │ ├── InMemoryPerSentenceOnDemandLM.cpp │ ├── InMemoryPerSentenceOnDemandLM.h │ ├── Jamfile │ ├── Ken.cpp │ ├── Ken.h │ ├── LDHT.cpp │ ├── LDHT.h │ ├── MaxEntSRI.cpp │ ├── MaxEntSRI.h │ ├── MultiFactor.cpp │ ├── MultiFactor.h │ ├── NeuralLMWrapper.cpp │ ├── NeuralLMWrapper.h │ ├── ParallelBackoff.cpp │ ├── ParallelBackoff.h │ ├── PointerState.h │ ├── RDLM.cpp │ ├── RDLM.h │ ├── Rand.cpp │ ├── Rand.h │ ├── Reloading.cpp │ ├── Reloading.h │ ├── Remote.cpp │ ├── Remote.h │ ├── SRI.cpp │ ├── SRI.h │ ├── SingleFactor.cpp │ ├── SingleFactor.h │ ├── backward.arpa │ ├── bilingual-lm │ │ ├── BiLM_NPLM.cpp │ │ └── BiLM_NPLM.h │ └── oxlm │ │ ├── OxLM.cpp │ │ ├── OxLM.h │ │ ├── OxLMMapper.cpp │ │ ├── OxLMMapper.h │ │ ├── OxLMParallelMapper.cpp │ │ ├── OxLMParallelMapper.h │ │ ├── SourceOxLM.cpp │ │ └── SourceOxLM.h ├── LVoc.cpp ├── LVoc.h ├── LatticeMBR.cpp ├── LatticeMBR.h ├── Manager.cpp ├── Manager.h ├── MockHypothesis.cpp ├── MockHypothesis.h ├── MosesTest.cpp ├── NonTerminal.cpp ├── NonTerminal.h ├── ObjectPool.h ├── OutputCollector.h ├── OutputFileStream.cpp ├── OutputFileStream.h ├── PCNTools.cpp ├── PCNTools.h ├── PDTAimp.cpp ├── PDTAimp.h ├── PP │ ├── CountsPhraseProperty.cpp │ ├── CountsPhraseProperty.h │ ├── Factory.cpp │ ├── Factory.h │ ├── NonTermContextProperty.cpp │ ├── NonTermContextProperty.h │ ├── OrientationPhraseProperty.cpp │ ├── OrientationPhraseProperty.h │ ├── PhraseProperty.cpp │ ├── PhraseProperty.h │ ├── SourceLabelsPhraseProperty.cpp │ ├── SourceLabelsPhraseProperty.h │ ├── SpanLengthPhraseProperty.cpp │ ├── SpanLengthPhraseProperty.h │ ├── TargetConstituentBoundariesLeftPhraseProperty.cpp │ ├── TargetConstituentBoundariesLeftPhraseProperty.h │ ├── TargetConstituentBoundariesRightAdjacentPhraseProperty.cpp │ ├── TargetConstituentBoundariesRightAdjacentPhraseProperty.h │ ├── TargetPreferencesPhraseProperty.cpp │ ├── TargetPreferencesPhraseProperty.h │ └── TreeStructurePhraseProperty.h ├── Parameter.cpp ├── Parameter.h ├── PartialTranslOptColl.cpp ├── PartialTranslOptColl.h ├── Phrase.cpp ├── Phrase.h ├── PrefixTree.h ├── PrefixTreeMap.cpp ├── PrefixTreeMap.h ├── Range.cpp ├── Range.h ├── ReorderingConstraint.cpp ├── ReorderingConstraint.h ├── RuleCube.cpp ├── RuleCube.h ├── RuleCubeItem.cpp ├── RuleCubeItem.h ├── RuleCubeQueue.cpp ├── RuleCubeQueue.h ├── ScoreComponentCollection.cpp ├── ScoreComponentCollection.h ├── ScoreComponentCollectionTest.cpp ├── Search.cpp ├── Search.h ├── SearchCubePruning.cpp ├── SearchCubePruning.h ├── SearchNormal.cpp ├── SearchNormal.h ├── Sentence.cpp ├── Sentence.h ├── SentenceStats.cpp ├── SentenceStats.h ├── SquareMatrix.cpp ├── SquareMatrix.h ├── StackVec.h ├── StaticData.cpp ├── StaticData.h ├── SyntacticLanguageModel.cpp ├── SyntacticLanguageModel.h ├── SyntacticLanguageModelFiles.h ├── SyntacticLanguageModelState.h ├── Syntax │ ├── BoundedPriorityContainer.h │ ├── Cube.cpp │ ├── Cube.h │ ├── CubeQueue.cpp │ ├── CubeQueue.h │ ├── F2S │ │ ├── DerivationWriter.cpp │ │ ├── DerivationWriter.h │ │ ├── Forest.cpp │ │ ├── Forest.h │ │ ├── GlueRuleSynthesizer.cpp │ │ ├── GlueRuleSynthesizer.h │ │ ├── HyperPath.cpp │ │ ├── HyperPath.h │ │ ├── HyperPathLoader.cpp │ │ ├── HyperPathLoader.h │ │ ├── HyperTree.cpp │ │ ├── HyperTree.h │ │ ├── HyperTreeCreator.h │ │ ├── HyperTreeLoader.cpp │ │ ├── HyperTreeLoader.h │ │ ├── Manager-inl.h │ │ ├── Manager.h │ │ ├── PHyperedgeToSHyperedgeBundle.h │ │ ├── PVertexToStackMap.h │ │ ├── RuleMatcher.h │ │ ├── RuleMatcherCallback.h │ │ ├── RuleMatcherHyperTree-inl.h │ │ ├── RuleMatcherHyperTree.h │ │ ├── TopologicalSorter.cpp │ │ ├── TopologicalSorter.h │ │ ├── TreeFragmentTokenizer.cpp │ │ └── TreeFragmentTokenizer.h │ ├── InputWeightFF.cpp │ ├── InputWeightFF.h │ ├── KBestExtractor.cpp │ ├── KBestExtractor.h │ ├── Manager.cpp │ ├── Manager.h │ ├── NonTerminalMap.h │ ├── PHyperedge.h │ ├── PLabel.h │ ├── PVertex.h │ ├── RuleTable.h │ ├── RuleTableFF.cpp │ ├── RuleTableFF.h │ ├── S2T │ │ ├── DerivationWriter.cpp │ │ ├── DerivationWriter.h │ │ ├── Manager-inl.h │ │ ├── Manager.h │ │ ├── OovHandler-inl.h │ │ ├── OovHandler.h │ │ ├── PChart.cpp │ │ ├── PChart.h │ │ ├── PHyperedgeToSHyperedgeBundle.h │ │ ├── ParserCallback.h │ │ ├── Parsers │ │ │ ├── Parser.h │ │ │ ├── RecursiveCYKPlusParser │ │ │ │ ├── RecursiveCYKPlusParser-inl.h │ │ │ │ └── RecursiveCYKPlusParser.h │ │ │ └── Scope3Parser │ │ │ │ ├── Parser-inl.h │ │ │ │ ├── Parser.h │ │ │ │ ├── PatternApplicationTrie.cpp │ │ │ │ ├── PatternApplicationTrie.h │ │ │ │ ├── SentenceMap.h │ │ │ │ ├── SymbolRange.h │ │ │ │ ├── SymbolRangeCalculator.cpp │ │ │ │ ├── SymbolRangeCalculator.h │ │ │ │ ├── TailLattice.h │ │ │ │ ├── TailLatticeBuilder.cpp │ │ │ │ ├── TailLatticeBuilder.h │ │ │ │ └── TailLatticeSearcher.h │ │ ├── RuleTrie.h │ │ ├── RuleTrieCYKPlus.cpp │ │ ├── RuleTrieCYKPlus.h │ │ ├── RuleTrieCreator.h │ │ ├── RuleTrieLoader.cpp │ │ ├── RuleTrieLoader.h │ │ ├── RuleTrieScope3.cpp │ │ ├── RuleTrieScope3.h │ │ ├── SChart.cpp │ │ └── SChart.h │ ├── SHyperedge.cpp │ ├── SHyperedge.h │ ├── SHyperedgeBundle.h │ ├── SHyperedgeBundleScorer.h │ ├── SLabel.h │ ├── SVertex.cpp │ ├── SVertex.h │ ├── SVertexRecombinationEqualityPred.h │ ├── SVertexRecombinationHasher.h │ ├── SVertexStack.h │ ├── SymbolEqualityPred.h │ ├── SymbolHasher.h │ └── T2S │ │ ├── GlueRuleSynthesizer.cpp │ │ ├── GlueRuleSynthesizer.h │ │ ├── HyperTree.h │ │ ├── InputTree.h │ │ ├── InputTreeBuilder.cpp │ │ ├── InputTreeBuilder.h │ │ ├── InputTreeToForest.cpp │ │ ├── InputTreeToForest.h │ │ ├── Manager-inl.h │ │ ├── Manager.h │ │ ├── RuleMatcher.h │ │ ├── RuleMatcherSCFG-inl.h │ │ ├── RuleMatcherSCFG.h │ │ ├── RuleTrie.cpp │ │ ├── RuleTrie.h │ │ ├── RuleTrieCreator.h │ │ ├── RuleTrieLoader.cpp │ │ └── RuleTrieLoader.h ├── TabbedSentence.cpp ├── TabbedSentence.h ├── TargetPhrase.cpp ├── TargetPhrase.h ├── TargetPhraseCollection.cpp ├── TargetPhraseCollection.h ├── Terminal.h ├── ThreadPool.cpp ├── ThreadPool.h ├── Timer.cpp ├── Timer.h ├── TrainingTask.h ├── TranslationAnalysis.cpp ├── TranslationAnalysis.h ├── TranslationModel │ ├── CYKPlusParser │ │ ├── ChartRuleLookupManagerCYKPlus.cpp │ │ ├── ChartRuleLookupManagerCYKPlus.h │ │ ├── ChartRuleLookupManagerExample.cpp │ │ ├── ChartRuleLookupManagerExample.h │ │ ├── ChartRuleLookupManagerMemory.cpp │ │ ├── ChartRuleLookupManagerMemory.h │ │ ├── ChartRuleLookupManagerMemoryPerSentence.cpp │ │ ├── ChartRuleLookupManagerMemoryPerSentence.h │ │ ├── ChartRuleLookupManagerOnDisk.cpp │ │ ├── ChartRuleLookupManagerOnDisk.h │ │ ├── CompletedRuleCollection.cpp │ │ ├── CompletedRuleCollection.h │ │ ├── DotChart.h │ │ ├── DotChartInMemory.cpp │ │ ├── DotChartInMemory.h │ │ ├── DotChartOnDisk.cpp │ │ └── DotChartOnDisk.h │ ├── CompactPT │ │ ├── BlockHashIndex.cpp │ │ ├── BlockHashIndex.h │ │ ├── CanonicalHuffman.h │ │ ├── CmphStringVectorAdapter.cpp │ │ ├── CmphStringVectorAdapter.h │ │ ├── ConsistentPhrases.h │ │ ├── Jamfile │ │ ├── LexicalReorderingTableCompact.cpp │ │ ├── LexicalReorderingTableCompact.h │ │ ├── LexicalReorderingTableCreator.cpp │ │ ├── LexicalReorderingTableCreator.h │ │ ├── ListCoders.h │ │ ├── MmapAllocator.h │ │ ├── MonotonicVector.h │ │ ├── MurmurHash3.cpp │ │ ├── MurmurHash3.h │ │ ├── PackedArray.h │ │ ├── PhraseDecoder.cpp │ │ ├── PhraseDecoder.h │ │ ├── PhraseDictionaryCompact.cpp │ │ ├── PhraseDictionaryCompact.h │ │ ├── PhraseTableCreator.cpp │ │ ├── PhraseTableCreator.h │ │ ├── StringVector.h │ │ ├── StringVectorTemp.h │ │ ├── TargetPhraseCollectionCache.cpp │ │ ├── TargetPhraseCollectionCache.h │ │ ├── ThrowingFwrite.cpp │ │ └── ThrowingFwrite.h │ ├── ExamplePT.cpp │ ├── ExamplePT.h │ ├── PhraseDictionary.cpp │ ├── PhraseDictionary.h │ ├── PhraseDictionaryCache.cpp │ ├── PhraseDictionaryCache.h │ ├── PhraseDictionaryDynamicCacheBased.cpp │ ├── PhraseDictionaryDynamicCacheBased.h │ ├── PhraseDictionaryGroup.cpp │ ├── PhraseDictionaryGroup.h │ ├── PhraseDictionaryMemory.cpp │ ├── PhraseDictionaryMemory.h │ ├── PhraseDictionaryMemoryPerSentence.cpp │ ├── PhraseDictionaryMemoryPerSentence.h │ ├── PhraseDictionaryMemoryPerSentenceOnDemand.cpp │ ├── PhraseDictionaryMemoryPerSentenceOnDemand.h │ ├── PhraseDictionaryMultiModel.cpp │ ├── PhraseDictionaryMultiModel.h │ ├── PhraseDictionaryMultiModelCounts.cpp │ ├── PhraseDictionaryMultiModelCounts.h │ ├── PhraseDictionaryNodeMemory.cpp │ ├── PhraseDictionaryNodeMemory.h │ ├── PhraseDictionaryScope3.cpp │ ├── PhraseDictionaryScope3.h │ ├── PhraseDictionaryTransliteration.cpp │ ├── PhraseDictionaryTransliteration.h │ ├── PhraseDictionaryTree.cpp │ ├── PhraseDictionaryTree.h │ ├── PhraseDictionaryTreeAdaptor.cpp │ ├── PhraseDictionaryTreeAdaptor.h │ ├── ProbingPT.cpp │ ├── ProbingPT.h │ ├── RuleTable │ │ ├── Loader.h │ │ ├── LoaderCompact.cpp │ │ ├── LoaderCompact.h │ │ ├── LoaderFactory.cpp │ │ ├── LoaderFactory.h │ │ ├── LoaderHiero.cpp │ │ ├── LoaderHiero.h │ │ ├── LoaderStandard.cpp │ │ ├── LoaderStandard.h │ │ ├── PhraseDictionaryALSuffixArray.cpp │ │ ├── PhraseDictionaryALSuffixArray.h │ │ ├── PhraseDictionaryFuzzyMatch.cpp │ │ ├── PhraseDictionaryFuzzyMatch.h │ │ ├── PhraseDictionaryOnDisk.cpp │ │ ├── PhraseDictionaryOnDisk.h │ │ ├── Trie.cpp │ │ ├── Trie.h │ │ ├── UTrie.cpp │ │ ├── UTrie.h │ │ ├── UTrieNode.cpp │ │ └── UTrieNode.h │ ├── Scope3Parser │ │ ├── ApplicableRuleTrie.cpp │ │ ├── ApplicableRuleTrie.h │ │ ├── IntermediateVarSpanNode.h │ │ ├── Parser.cpp │ │ ├── Parser.h │ │ ├── SentenceMap.h │ │ ├── StackLattice.h │ │ ├── StackLatticeBuilder.cpp │ │ ├── StackLatticeBuilder.h │ │ ├── StackLatticeSearcher.h │ │ ├── VarSpanNode.h │ │ ├── VarSpanTrieBuilder.cpp │ │ └── VarSpanTrieBuilder.h │ ├── UG │ │ ├── Jamfile │ │ ├── Makefile │ │ ├── TargetPhraseCollectionCache.cc │ │ ├── TargetPhraseCollectionCache.h │ │ ├── bitext-find.cc │ │ ├── check-coverage.cc │ │ ├── check-coverage2.cc │ │ ├── check-coverage3.cc │ │ ├── check-coverage5.cc │ │ ├── count-ptable-features.cc │ │ ├── filter-pt.cc │ │ ├── fuzzy.cc │ │ ├── generic │ │ │ ├── Jamfile │ │ │ ├── file_io │ │ │ │ ├── ug_stream.cpp │ │ │ │ └── ug_stream.h │ │ │ ├── program_options │ │ │ │ ├── ug_get_options.cpp │ │ │ │ ├── ug_get_options.h │ │ │ │ ├── ug_splice_arglist.cc │ │ │ │ └── ug_splice_arglist.h │ │ │ ├── sampling │ │ │ │ └── Sampling.h │ │ │ ├── sorting │ │ │ │ ├── NBestList.h │ │ │ │ └── VectorIndexSorter.h │ │ │ ├── stringdist │ │ │ │ ├── ug_stringdist.cc │ │ │ │ └── ug_stringdist.h │ │ │ └── threading │ │ │ │ ├── ug_ref_counter.h │ │ │ │ ├── ug_thread_pool.cc │ │ │ │ ├── ug_thread_pool.h │ │ │ │ ├── ug_thread_safe_counter.cc │ │ │ │ └── ug_thread_safe_counter.h │ │ ├── mm │ │ │ ├── Jamfile │ │ │ ├── Makefile.x │ │ │ ├── calc-coverage.cc │ │ │ ├── custom-pt.cc │ │ │ ├── mam2symal.cc │ │ │ ├── mam_verify.cc │ │ │ ├── mmlex-build.cc │ │ │ ├── mmlex-lookup.cc │ │ │ ├── mtt-build.cc │ │ │ ├── mtt-count-words.cc │ │ │ ├── mtt-demo1.cc │ │ │ ├── mtt-dump.cc │ │ │ ├── mtt.count.cc │ │ │ ├── num_read_write.cc │ │ │ ├── num_read_write.h │ │ │ ├── obsolete │ │ │ │ └── ug_bitext_base.h │ │ │ ├── symal2mam.cc │ │ │ ├── test-dynamic-im-tsa.cc │ │ │ ├── test-http-client.cc │ │ │ ├── test-xml-escaping.cc │ │ │ ├── tpt_pickler.cc │ │ │ ├── tpt_pickler.h │ │ │ ├── tpt_tightindex.cc │ │ │ ├── tpt_tightindex.h │ │ │ ├── tpt_tokenindex.cc │ │ │ ├── tpt_tokenindex.h │ │ │ ├── tpt_typedefs.h │ │ │ ├── ug_bitext.cc │ │ │ ├── ug_bitext.h │ │ │ ├── ug_bitext_agenda.h │ │ │ ├── ug_bitext_agenda_job.h │ │ │ ├── ug_bitext_agenda_worker.h │ │ │ ├── ug_bitext_jstats.cc │ │ │ ├── ug_bitext_jstats.h │ │ │ ├── ug_bitext_moses.h │ │ │ ├── ug_bitext_phrase_extraction_record.h │ │ │ ├── ug_bitext_pstats.cc │ │ │ ├── ug_bitext_pstats.h │ │ │ ├── ug_bitext_sampler.h │ │ │ ├── ug_conll_bottom_up_token.h │ │ │ ├── ug_conll_record.cc │ │ │ ├── ug_conll_record.h │ │ │ ├── ug_corpus_token.cc │ │ │ ├── ug_corpus_token.h │ │ │ ├── ug_deptree.cc │ │ │ ├── ug_deptree.h │ │ │ ├── ug_http_client.cc │ │ │ ├── ug_http_client.h │ │ │ ├── ug_im_bitext.cc │ │ │ ├── ug_im_bitext.h │ │ │ ├── ug_im_tsa.h │ │ │ ├── ug_im_ttrack.h │ │ │ ├── ug_lexical_phrase_scorer1.h │ │ │ ├── ug_lexical_phrase_scorer2.h │ │ │ ├── ug_lexical_reordering.cc │ │ │ ├── ug_lexical_reordering.h │ │ │ ├── ug_load_primer.cc │ │ │ ├── ug_load_primer.h │ │ │ ├── ug_lru_cache.h │ │ │ ├── ug_mm_2d_table.h │ │ │ ├── ug_mm_bitext.h │ │ │ ├── ug_mm_tsa.h │ │ │ ├── ug_mm_tsa_tree_iterator.h │ │ │ ├── ug_mm_ttrack.h │ │ │ ├── ug_phrasepair.cc │ │ │ ├── ug_phrasepair.h │ │ │ ├── ug_prep_phrases.h │ │ │ ├── ug_sampling_bias.cc │ │ │ ├── ug_sampling_bias.h │ │ │ ├── ug_tsa_array_entry.cc │ │ │ ├── ug_tsa_array_entry.h │ │ │ ├── ug_tsa_base.h │ │ │ ├── ug_tsa_bitset_cache.h │ │ │ ├── ug_tsa_tree_iterator.h │ │ │ ├── ug_ttrack_base.cc │ │ │ ├── ug_ttrack_base.h │ │ │ ├── ug_ttrack_position.cc │ │ │ ├── ug_ttrack_position.h │ │ │ └── ug_typedefs.h │ │ ├── mmsapt.cpp │ │ ├── mmsapt.h │ │ ├── mmsapt_align.cc │ │ ├── ptable-describe-features.cc │ │ ├── ptable-lookup-corpus.cc │ │ ├── ptable-lookup.cc │ │ ├── sapt_phrase_scorers.h │ │ ├── sapt_pscore_base.h │ │ ├── sapt_pscore_coherence.h │ │ ├── sapt_pscore_cumulative_bias.h │ │ ├── sapt_pscore_length_ratio.h │ │ ├── sapt_pscore_lex1.h │ │ ├── sapt_pscore_logcnt.h │ │ ├── sapt_pscore_pbwd.h │ │ ├── sapt_pscore_pfwd.h │ │ ├── sapt_pscore_phrasecount.h │ │ ├── sapt_pscore_provenance.h │ │ ├── sapt_pscore_rareness.h │ │ ├── sapt_pscore_unaligned.h │ │ ├── sapt_pscore_wordcount.h │ │ ├── sim-pe.cc │ │ ├── spe-check-coverage.cc │ │ ├── spe-check-coverage2.cc │ │ ├── spe-check-coverage3.cc │ │ ├── test-boost-threadpool.cc │ │ ├── test-domspec.cc │ │ ├── test-iptr.cc │ │ ├── test-ranked-phrase-lookup.cc │ │ ├── try-align.cc │ │ ├── try-align2.cc │ │ └── util │ │ │ ├── Makefile │ │ │ ├── ibm1-align │ │ │ ├── ibm1-align.cc │ │ │ └── tokenindex.dump.cc │ └── fuzzy-match │ │ ├── Alignments.cpp │ │ ├── Alignments.h │ │ ├── FuzzyMatchWrapper.cpp │ │ ├── FuzzyMatchWrapper.h │ │ ├── Match.h │ │ ├── SentenceAlignment.cpp │ │ ├── SentenceAlignment.h │ │ ├── SuffixArray.cpp │ │ ├── SuffixArray.h │ │ ├── Vocabulary.cpp │ │ ├── Vocabulary.h │ │ ├── create_xml.cpp │ │ └── create_xml.h ├── TranslationOption.cpp ├── TranslationOption.h ├── TranslationOptionCollection.cpp ├── TranslationOptionCollection.h ├── TranslationOptionCollectionConfusionNet.cpp ├── TranslationOptionCollectionConfusionNet.h ├── TranslationOptionCollectionLattice.cpp ├── TranslationOptionCollectionLattice.h ├── TranslationOptionCollectionText.cpp ├── TranslationOptionCollectionText.h ├── TranslationOptionList.cpp ├── TranslationOptionList.h ├── TranslationTask.cpp ├── TranslationTask.h ├── TreeInput.cpp ├── TreeInput.h ├── TrellisPath.cpp ├── TrellisPath.h ├── TrellisPathCollection.cpp ├── TrellisPathCollection.h ├── TrellisPathList.h ├── TypeDef.h ├── UniqueObject.h ├── Util.cpp ├── Util.h ├── Word.cpp ├── Word.h ├── WordLattice.cpp ├── WordLattice.h ├── WordsBitmapTest.cpp ├── XmlOption.cpp ├── XmlOption.h ├── gzfilebuf.h ├── hypergraph.proto ├── mbr.cpp ├── mbr.h ├── parameters │ ├── AllOptions.cpp │ ├── AllOptions.h │ ├── BeamSearchOptions.h │ ├── BookkeepingOptions.cpp │ ├── BookkeepingOptions.h │ ├── ContextParameters.cpp │ ├── ContextParameters.h │ ├── CubePruningOptions.cpp │ ├── CubePruningOptions.h │ ├── InputOptions.cpp │ ├── InputOptions.h │ ├── LMBR_Options.cpp │ ├── LMBR_Options.h │ ├── LookupOptions.h │ ├── MBR_Options.cpp │ ├── MBR_Options.h │ ├── NBestOptions.cpp │ ├── NBestOptions.h │ ├── OOVHandlingOptions.cpp │ ├── OOVHandlingOptions.h │ ├── OptionsBaseClass.cpp │ ├── OptionsBaseClass.h │ ├── ReorderingOptions.cpp │ ├── ReorderingOptions.h │ ├── ReportingOptions.cpp │ ├── ReportingOptions.h │ ├── SearchOptions.cpp │ ├── SearchOptions.h │ ├── ServerOptions.cpp │ ├── ServerOptions.h │ ├── SyntaxOptions.cpp │ └── SyntaxOptions.h ├── rule.proto ├── server │ ├── CloseSession.cpp │ ├── CloseSession.h │ ├── Hypothesis_4server.cpp │ ├── Optimizer.cpp │ ├── Optimizer.h │ ├── PackScores.cpp │ ├── PackScores.h │ ├── Server.cpp │ ├── Server.h │ ├── Session.h │ ├── TranslationRequest.cpp │ ├── TranslationRequest.h │ ├── Translator.cpp │ ├── Translator.h │ ├── Updater.cpp │ └── Updater.h ├── thread_safe_container.h └── xmlrpc-c.h ├── moses2 ├── AlignmentInfo.cpp ├── AlignmentInfo.h ├── AlignmentInfoCollection.cpp ├── AlignmentInfoCollection.h ├── ArcLists.cpp ├── ArcLists.h ├── Array.h ├── DLLEntryApi.cpp ├── EstimatedScores.cpp ├── EstimatedScores.h ├── FF │ ├── Distortion.cpp │ ├── Distortion.h │ ├── ExampleStatefulFF.cpp │ ├── ExampleStatefulFF.h │ ├── ExampleStatelessFF.cpp │ ├── ExampleStatelessFF.h │ ├── FFState.cpp │ ├── FFState.h │ ├── FeatureFunction.cpp │ ├── FeatureFunction.h │ ├── FeatureFunctions.cpp │ ├── FeatureFunctions.h │ ├── FeatureRegistry.cpp │ ├── FeatureRegistry.h │ ├── LexicalReordering │ │ ├── BidirectionalReorderingState.cpp │ │ ├── BidirectionalReorderingState.h │ │ ├── HReorderingBackwardState.cpp │ │ ├── HReorderingBackwardState.h │ │ ├── HReorderingForwardState.cpp │ │ ├── HReorderingForwardState.h │ │ ├── LRModel.cpp │ │ ├── LRModel.h │ │ ├── LRState.cpp │ │ ├── LRState.h │ │ ├── LexicalReordering.cpp │ │ ├── LexicalReordering.h │ │ ├── PhraseBasedReorderingState.cpp │ │ ├── PhraseBasedReorderingState.h │ │ ├── ReorderingStack.cpp │ │ └── ReorderingStack.h │ ├── OSM │ │ ├── KenOSM.cpp │ │ ├── KenOSM.h │ │ ├── OpSequenceModel.cpp │ │ ├── OpSequenceModel.h │ │ ├── osmHyp.cpp │ │ └── osmHyp.h │ ├── PhrasePenalty.cpp │ ├── PhrasePenalty.h │ ├── PointerState.cpp │ ├── PointerState.h │ ├── StatefulFeatureFunction.cpp │ ├── StatefulFeatureFunction.h │ ├── StatelessFeatureFunction.cpp │ ├── StatelessFeatureFunction.h │ ├── WordPenalty.cpp │ └── WordPenalty.h ├── HypothesisBase.cpp ├── HypothesisBase.h ├── HypothesisColl.cpp ├── HypothesisColl.h ├── InMemoryTrie │ ├── InMemoryTrie.h │ ├── Node.h │ └── utils.h ├── InputPathBase.cpp ├── InputPathBase.h ├── InputPathsBase.cpp ├── InputPathsBase.h ├── InputType.cpp ├── InputType.h ├── Jamfile ├── LM │ ├── GPULM.cpp │ ├── GPULM.h │ ├── KENLM.cpp │ ├── KENLM.h │ ├── KENLMBatch.cpp │ ├── KENLMBatch.h │ ├── LanguageModel.cpp │ └── LanguageModel.h ├── Main.cpp ├── Main.h ├── ManagerBase.cpp ├── ManagerBase.h ├── MemPool.cpp ├── MemPool.h ├── MemPoolAllocator.h ├── Moses2Wrapper.cpp ├── Moses2Wrapper.h ├── Phrase.cpp ├── Phrase.h ├── PhraseBased │ ├── CubePruningMiniStack │ │ ├── Misc.cpp │ │ ├── Misc.h │ │ ├── Search.cpp │ │ ├── Search.h │ │ ├── Stack.cpp │ │ └── Stack.h │ ├── Hypothesis.cpp │ ├── Hypothesis.h │ ├── InputPath.cpp │ ├── InputPath.h │ ├── InputPaths.cpp │ ├── InputPaths.h │ ├── Manager.cpp │ ├── Manager.h │ ├── Normal │ │ ├── Search.cpp │ │ ├── Search.h │ │ ├── Stack.cpp │ │ ├── Stack.h │ │ ├── Stacks.cpp │ │ └── Stacks.h │ ├── PhraseImpl.cpp │ ├── PhraseImpl.h │ ├── ReorderingConstraint.cpp │ ├── ReorderingConstraint.h │ ├── Search.cpp │ ├── Search.h │ ├── Sentence.cpp │ ├── Sentence.h │ ├── SentenceWithCandidates.cpp │ ├── SentenceWithCandidates.h │ ├── TargetPhraseImpl.cpp │ ├── TargetPhraseImpl.h │ ├── TargetPhrases.cpp │ ├── TargetPhrases.h │ ├── TrellisPath.cpp │ └── TrellisPath.h ├── PhraseImplTemplate.h ├── Recycler.cpp ├── Recycler.h ├── SCFG │ ├── ActiveChart.cpp │ ├── ActiveChart.h │ ├── Hypothesis.cpp │ ├── Hypothesis.h │ ├── InputPath.cpp │ ├── InputPath.h │ ├── InputPaths.cpp │ ├── InputPaths.h │ ├── Manager.cpp │ ├── Manager.h │ ├── Misc.cpp │ ├── Misc.h │ ├── PhraseImpl.cpp │ ├── PhraseImpl.h │ ├── Sentence.cpp │ ├── Sentence.h │ ├── Stack.cpp │ ├── Stack.h │ ├── Stacks.cpp │ ├── Stacks.h │ ├── TargetPhraseImpl.cpp │ ├── TargetPhraseImpl.h │ ├── TargetPhrases.cpp │ ├── TargetPhrases.h │ ├── Word.cpp │ ├── Word.h │ └── nbest │ │ ├── KBestExtractor.cpp │ │ ├── KBestExtractor.h │ │ ├── NBest.cpp │ │ ├── NBest.h │ │ ├── NBestColl.cpp │ │ ├── NBestColl.h │ │ ├── NBests.cpp │ │ └── NBests.h ├── Scores.cpp ├── Scores.h ├── SubPhrase.cpp ├── SubPhrase.h ├── System.cpp ├── System.h ├── TargetPhrase.cpp ├── TargetPhrase.h ├── TranslationModel │ ├── CompactPT │ │ ├── BlockHashIndex.cpp │ │ ├── BlockHashIndex.h │ │ ├── CanonicalHuffman.h │ │ ├── CmphStringVectorAdapter.cpp │ │ ├── CmphStringVectorAdapter.h │ │ ├── LexicalReorderingTableCompact.cpp │ │ ├── LexicalReorderingTableCompact.h │ │ ├── ListCoders.h │ │ ├── MmapAllocator.h │ │ ├── MonotonicVector.h │ │ ├── MurmurHash3.cpp │ │ ├── MurmurHash3.h │ │ ├── PackedArray.h │ │ ├── StringVector.h │ │ ├── TargetPhraseCollectionCache.cpp │ │ ├── TargetPhraseCollectionCache.h │ │ ├── ThrowingFwrite.cpp │ │ └── ThrowingFwrite.h │ ├── Dynamic │ │ ├── DynamicPhraseTable.cpp │ │ ├── DynamicPhraseTable.h │ │ └── DynamicPhraseTableNode.h │ ├── MSPT │ │ ├── MSNode.h │ │ ├── MSPT.cpp │ │ └── MSPT.h │ ├── Memory │ │ ├── Node.h │ │ ├── PhraseTableMemory.cpp │ │ └── PhraseTableMemory.h │ ├── PhraseTable.cpp │ ├── PhraseTable.h │ ├── ProbingPT.cpp │ ├── ProbingPT.h │ ├── Transliteration.cpp │ ├── Transliteration.h │ ├── UnknownWordPenalty.cpp │ └── UnknownWordPenalty.h ├── TranslationTask.cpp ├── TranslationTask.h ├── TrellisPaths.cpp ├── TrellisPaths.h ├── TypeDef.cpp ├── TypeDef.h ├── Vector.cpp ├── Vector.h ├── Weights.cpp ├── Weights.h ├── Word.cpp ├── Word.h ├── defer │ ├── CubePruningBitmapStack │ │ ├── Misc.cpp │ │ ├── Misc.h │ │ ├── Search.cpp │ │ ├── Search.h │ │ ├── Stack.cpp │ │ └── Stack.h │ ├── CubePruningCardinalStack │ │ ├── Misc.cpp │ │ ├── Misc.h │ │ ├── Search.cpp │ │ ├── Search.h │ │ ├── Stack.cpp │ │ └── Stack.h │ ├── CubePruningPerBitmap │ │ ├── Misc.cpp │ │ ├── Misc.h │ │ ├── Search.cpp │ │ ├── Search.h │ │ ├── Stacks.cpp │ │ └── Stacks.h │ └── CubePruningPerMiniStack │ │ ├── Misc.cpp │ │ ├── Misc.h │ │ ├── Search.cpp │ │ ├── Search.h │ │ ├── Stacks.cpp │ │ └── Stacks.h ├── legacy │ ├── Bitmap.cpp │ ├── Bitmap.h │ ├── Bitmaps.cpp │ ├── Bitmaps.h │ ├── Factor.cpp │ ├── Factor.h │ ├── FactorCollection.cpp │ ├── FactorCollection.h │ ├── InputFileStream.cpp │ ├── InputFileStream.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── OutputCollector.cpp │ ├── OutputCollector.h │ ├── OutputFileStream.cpp │ ├── OutputFileStream.h │ ├── Parameter.cpp │ ├── Parameter.h │ ├── Range.cpp │ ├── Range.h │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ ├── Timer.cpp │ ├── Timer.h │ ├── Util2.cpp │ ├── Util2.h │ ├── gzfilebuf.h │ └── xmlrpc-c.h ├── parameters │ ├── AllOptions.cpp │ ├── AllOptions.h │ ├── BeamSearchOptions.h │ ├── BookkeepingOptions.cpp │ ├── BookkeepingOptions.h │ ├── ContextParameters.cpp │ ├── ContextParameters.h │ ├── CubePruningOptions.cpp │ ├── CubePruningOptions.h │ ├── InputOptions.cpp │ ├── InputOptions.h │ ├── LMBR_Options.cpp │ ├── LMBR_Options.h │ ├── LookupOptions.h │ ├── MBR_Options.cpp │ ├── MBR_Options.h │ ├── NBestOptions.cpp │ ├── NBestOptions.h │ ├── OOVHandlingOptions.cpp │ ├── OOVHandlingOptions.h │ ├── OptionsBaseClass.cpp │ ├── OptionsBaseClass.h │ ├── ReorderingOptions.cpp │ ├── ReorderingOptions.h │ ├── ReportingOptions.cpp │ ├── ReportingOptions.h │ ├── SearchOptions.cpp │ ├── SearchOptions.h │ ├── ServerOptions.cpp │ ├── ServerOptions.h │ ├── SyntaxOptions.cpp │ └── SyntaxOptions.h ├── pugiconfig.hpp ├── pugixml.cpp ├── pugixml.hpp └── server │ ├── Server.cpp │ ├── Server.h │ ├── TranslationRequest.cpp │ ├── TranslationRequest.h │ ├── Translator.cpp │ └── Translator.h ├── phrase-extract ├── Alignment.cpp ├── Alignment.h ├── AlignmentPhrase.cpp ├── AlignmentPhrase.h ├── DomainFeature.cpp ├── DomainFeature.h ├── ExtractedRule.h ├── ExtractionPhrasePair.cpp ├── ExtractionPhrasePair.h ├── Hole.h ├── HoleCollection.cpp ├── HoleCollection.h ├── InputFileStream.cpp ├── InputFileStream.h ├── InternalStructFeature.cpp ├── InternalStructFeature.h ├── Jamfile ├── OutputFileStream.cpp ├── OutputFileStream.h ├── PhraseExtractionOptions.h ├── PhraseOrientation.cpp ├── PhraseOrientation.h ├── PropertiesConsolidator.cpp ├── PropertiesConsolidator.h ├── RuleExist.h ├── RuleExtractionOptions.h ├── ScoreFeature.cpp ├── ScoreFeature.h ├── ScoreFeatureTest.cpp ├── SentenceAlignment.cpp ├── SentenceAlignment.h ├── SentenceAlignmentWithSyntax.cpp ├── SentenceAlignmentWithSyntax.h ├── SyntaxNode.h ├── SyntaxNodeCollection.cpp ├── SyntaxNodeCollection.h ├── SyntaxTree.h ├── XmlException.h ├── XmlTree.cpp ├── XmlTree.h ├── consolidate-direct-main.cpp ├── consolidate-main.cpp ├── consolidate-reverse-main.cpp ├── extract-ghkm │ ├── AlignmentGraph.cpp │ ├── AlignmentGraph.h │ ├── ComposedRule.cpp │ ├── ComposedRule.h │ ├── ExtractGHKM.cpp │ ├── ExtractGHKM.h │ ├── Jamfile │ ├── Main.cpp │ ├── Node.cpp │ ├── Node.h │ ├── Options.h │ ├── Rule.cpp │ ├── Rule.h │ ├── ScfgRule.cpp │ ├── ScfgRule.h │ ├── ScfgRuleWriter.cpp │ ├── ScfgRuleWriter.h │ ├── Span.cpp │ ├── Span.h │ ├── StsgRule.cpp │ ├── StsgRule.h │ ├── StsgRuleWriter.cpp │ ├── StsgRuleWriter.h │ ├── Subgraph.cpp │ └── Subgraph.h ├── extract-lex-main.cpp ├── extract-lex.h ├── extract-main.cpp ├── extract-mixed-syntax │ ├── AlignedSentence.cpp │ ├── AlignedSentence.h │ ├── AlignedSentenceSyntax.cpp │ ├── AlignedSentenceSyntax.h │ ├── ConsistentPhrase.cpp │ ├── ConsistentPhrase.h │ ├── ConsistentPhrases.cpp │ ├── ConsistentPhrases.h │ ├── InputFileStream.cpp │ ├── InputFileStream.h │ ├── Jamfile │ ├── Main.cpp │ ├── Main.h │ ├── NonTerm.cpp │ ├── NonTerm.h │ ├── Parameter.cpp │ ├── Parameter.h │ ├── Phrase.cpp │ ├── Phrase.h │ ├── Property.cpp │ ├── Property.h │ ├── Rule.cpp │ ├── Rule.h │ ├── RulePhrase.cpp │ ├── RulePhrase.h │ ├── RuleSymbol.cpp │ ├── RuleSymbol.h │ ├── Rules.cpp │ ├── Rules.h │ ├── SyntaxTree.cpp │ ├── SyntaxTree.h │ ├── Word.cpp │ ├── Word.h │ ├── gzfilebuf.h │ ├── pugiconfig.hpp │ ├── pugixml.cpp │ └── pugixml.hpp ├── extract-rules-main.cpp ├── filter-rule-table │ ├── CfgFilter.h │ ├── FilterRuleTable.cpp │ ├── FilterRuleTable.h │ ├── Forest.h │ ├── ForestTsgFilter.cpp │ ├── ForestTsgFilter.h │ ├── Jamfile │ ├── Main.cpp │ ├── Options.h │ ├── StringCfgFilter.cpp │ ├── StringCfgFilter.h │ ├── StringForest.h │ ├── StringForestParser.cpp │ ├── StringForestParser.h │ ├── TreeCfgFilter.cpp │ ├── TreeCfgFilter.h │ ├── TreeTsgFilter.cpp │ ├── TreeTsgFilter.h │ ├── TsgFilter.cpp │ └── TsgFilter.h ├── gzfilebuf.h ├── hierarchical.h ├── lexical-reordering │ ├── InputFileStream.cpp │ ├── InputFileStream.h │ ├── Jamfile │ ├── gzfilebuf.h │ ├── reordering_classes.cpp │ ├── reordering_classes.h │ └── score.cpp ├── pcfg-extract │ ├── Jamfile │ ├── main.cc │ ├── options.h │ ├── pcfg_extract.cc │ ├── pcfg_extract.h │ ├── rule_collection.cc │ ├── rule_collection.h │ ├── rule_extractor.cc │ └── rule_extractor.h ├── pcfg-score │ ├── Jamfile │ ├── main.cc │ ├── options.h │ ├── pcfg_score.cc │ ├── pcfg_score.h │ ├── tree_scorer.cc │ └── tree_scorer.h ├── postprocess-egret-forests │ ├── Forest.h │ ├── ForestParser.cpp │ ├── ForestParser.h │ ├── ForestWriter.cpp │ ├── ForestWriter.h │ ├── Jamfile │ ├── Main.cpp │ ├── Options.h │ ├── PostprocessEgretForests.cpp │ ├── PostprocessEgretForests.h │ ├── SplitPoint.cpp │ ├── SplitPoint.h │ ├── SplitPointFileParser.cpp │ ├── SplitPointFileParser.h │ ├── Symbol.h │ ├── TopologicalSorter.cpp │ └── TopologicalSorter.h ├── relax-parse-main.cpp ├── relax-parse.h ├── score-main.cpp ├── score-stsg │ ├── Jamfile │ ├── LexicalTable.cpp │ ├── LexicalTable.h │ ├── Main.cpp │ ├── Options.h │ ├── RuleGroup.cpp │ ├── RuleGroup.h │ ├── RuleSymbol.h │ ├── RuleTableWriter.cpp │ ├── RuleTableWriter.h │ ├── ScoreStsg.cpp │ ├── ScoreStsg.h │ ├── TokenizedRuleHalf.cpp │ ├── TokenizedRuleHalf.h │ └── Vocabulary.h ├── score.h ├── statistics-main.cpp ├── syntax-common │ ├── Jamfile │ ├── exception.h │ ├── numbered_set.h │ ├── pcfg.cc │ ├── pcfg.h │ ├── string_tree.h │ ├── tool.cc │ ├── tool.h │ ├── tree-inl.h │ ├── tree.h │ ├── tree_fragment_tokenizer.cc │ ├── tree_fragment_tokenizer.h │ ├── tree_fragment_tokenizer_test.cc │ ├── tree_test.cc │ ├── vocabulary.h │ ├── xml_tree_parser.cc │ ├── xml_tree_parser.h │ ├── xml_tree_writer.cc │ └── xml_tree_writer.h ├── tables-core.cpp ├── tables-core.h └── test.domain ├── probingpt ├── CreateProbingPT.cpp ├── InputFileStream.cpp ├── InputFileStream.h ├── Jamfile ├── OutputFileStream.cpp ├── OutputFileStream.h ├── StoreTarget.cpp ├── StoreTarget.h ├── StoreVocab.cpp ├── StoreVocab.h ├── gzfilebuf.h ├── hash.cpp ├── hash.h ├── line_splitter.cpp ├── line_splitter.h ├── probing_hash_utils.cpp ├── probing_hash_utils.h ├── querying.cpp ├── querying.h ├── storing.cpp ├── storing.h ├── util.cpp ├── util.h ├── vocabid.cpp └── vocabid.h ├── regression-testing ├── Jamfile ├── MosesRegressionTesting.pm ├── compare-results.perl ├── ensure-regression-data-here.perl ├── run-single-test.perl ├── run-test-detokenizer.perl ├── run-test-extract.perl ├── run-test-mert.perl ├── run-test-misc.perl └── run-test-scorer.perl ├── run-regtests.sh ├── scripts ├── Jamfile ├── OSM │ ├── OSM-Train.perl │ ├── extract-singletons.perl │ └── flipAlignment.perl ├── README ├── Transliteration │ ├── clean.pl │ ├── corpusCreator.pl │ ├── in-decoding-transliteration.pl │ ├── post-decoding-transliteration.pl │ ├── prepare-transliteration-phrase-table.pl │ ├── threshold.pl │ └── train-transliteration-module.pl ├── analysis │ ├── README │ ├── bootstrap-hypothesis-difference-significance.pl │ ├── extract-target-trees.py │ ├── nontranslated_words.pl │ ├── oov.pl │ ├── perllib │ │ └── Error.pm │ ├── sentence-by-sentence.pl │ ├── sg2dot.perl │ ├── show-phrases-used.pl │ ├── smtgui │ │ ├── Corpus.pm │ │ ├── README │ │ ├── file-descriptions │ │ ├── file-factors │ │ ├── filter-phrase-table.pl │ │ └── newsmtgui.cgi │ ├── suspicious_tokenization.pl │ ├── weight-scan-summarize.sh │ └── weight-scan.pl ├── docker │ ├── Dockerfile.ubuntu.basic │ └── Dockerfile.ubuntu.fastlightpbmt ├── ems │ ├── example │ │ ├── config.basic │ │ ├── config.basic.moses2 │ │ ├── config.factored │ │ ├── config.hierarchical │ │ ├── config.syntax │ │ ├── config.toy │ │ ├── config.toy.bilinguallm │ │ └── data │ │ │ ├── config.hierarchical │ │ │ ├── nc-5k.en │ │ │ ├── nc-5k.fr │ │ │ ├── run.hierarchical.sh │ │ │ ├── test-ref.en.sgm │ │ │ ├── test-src.fr.sgm │ │ │ ├── weight.ini │ │ │ └── weight_bilinguallm.ini │ ├── experiment.machines │ ├── experiment.meta │ ├── experiment.perl │ ├── fix-info.perl │ ├── support │ │ ├── analysis.perl │ │ ├── berkeley-process.sh │ │ ├── berkeley-train.sh │ │ ├── build-domain-file-from-subcorpora.perl │ │ ├── build-sparse-features.perl │ │ ├── cache-model.perl │ │ ├── consolidate-training-data.perl │ │ ├── create-xml.perl │ │ ├── defaultconfig.py │ │ ├── fast-align-in-parts.perl │ │ ├── generic-multicore-parallelizer.perl │ │ ├── generic-parallelizer.perl │ │ ├── input-from-sgm.perl │ │ ├── interpolate-lm.perl │ │ ├── lmplz-wrapper.perl │ │ ├── mml-filter.perl │ │ ├── mml-filter.py │ │ ├── mml-score.perl │ │ ├── mml-train.perl │ │ ├── prepare-fast-align.perl │ │ ├── reference-from-sgm.perl │ │ ├── remove-segmentation-markup.perl │ │ ├── report-experiment-scores.perl │ │ ├── run-command-on-multiple-refsets.perl │ │ ├── run-wade.perl │ │ ├── split-sentences.perl │ │ ├── submit-grid.perl │ │ ├── substitute-filtered-tables-and-weights.perl │ │ ├── substitute-filtered-tables.perl │ │ ├── substitute-weights.perl │ │ ├── symmetrize-fast-align.perl │ │ ├── ter.perl │ │ ├── thot-lm-wrapper.perl │ │ ├── tree-converter-wrapper.perl │ │ └── wrap-xml.perl │ └── web │ │ ├── analysis.php │ │ ├── analysis_diff.php │ │ ├── base64.js │ │ ├── bilingual-concordance.css │ │ ├── close.gif │ │ ├── comment.php │ │ ├── diff.php │ │ ├── favicon.ico │ │ ├── general.css │ │ ├── hierarchical-segmentation.css │ │ ├── hierarchical-segmentation.js │ │ ├── index.php │ │ ├── javascripts │ │ ├── builder.js │ │ ├── controls.js │ │ ├── dragdrop.js │ │ ├── effects.js │ │ ├── prototype.js │ │ ├── scriptaculous-js-1.8.3 │ │ │ ├── CHANGELOG │ │ │ ├── MIT-LICENSE │ │ │ ├── README.rdoc │ │ │ ├── lib │ │ │ │ └── prototype.js │ │ │ ├── src │ │ │ │ ├── builder.js │ │ │ │ ├── controls.js │ │ │ │ ├── dragdrop.js │ │ │ │ ├── effects.js │ │ │ │ ├── scriptaculous.js │ │ │ │ ├── slider.js │ │ │ │ ├── sound.js │ │ │ │ └── unittest.js │ │ │ └── test │ │ │ │ ├── functional │ │ │ │ ├── _ajax_inplaceeditor_result.html │ │ │ │ ├── _ajax_inplaceeditor_text.html │ │ │ │ ├── _autocomplete_result.html │ │ │ │ ├── _autocomplete_result_single.html │ │ │ │ ├── ajax_autocompleter2_test.html │ │ │ │ ├── ajax_autocompleter_test.html │ │ │ │ ├── ajax_inplacecollectioneditor_test.html │ │ │ │ ├── ajax_inplaceeditor_test.html │ │ │ │ ├── dragdrop2_test.html │ │ │ │ ├── dragdrop3_test.html │ │ │ │ ├── dragdrop4_test.html │ │ │ │ ├── dragdrop5_test.html │ │ │ │ ├── dragdrop6_test.html │ │ │ │ ├── dragdrop7_test.html │ │ │ │ ├── dragdrop8_test.html │ │ │ │ ├── dragdrop9_test.html │ │ │ │ ├── dragdrop_delay_test.html │ │ │ │ ├── dragdrop_test.html │ │ │ │ ├── dropmarker.png │ │ │ │ ├── effect_direct_test.html │ │ │ │ ├── effect_puff_test.html │ │ │ │ ├── effect_scale_test.html │ │ │ │ ├── effect_shake.html │ │ │ │ ├── effects2_test.html │ │ │ │ ├── effects3_test.html │ │ │ │ ├── effects4_test.html │ │ │ │ ├── effects5_test.html │ │ │ │ ├── effects5b_test.html │ │ │ │ ├── effects6_test.html │ │ │ │ ├── effects_blind_test.html │ │ │ │ ├── effects_float_appear_test.html │ │ │ │ ├── effects_grow_strink_test.html │ │ │ │ ├── effects_highlight_bg_image.html │ │ │ │ ├── effects_queue_limit_test.html │ │ │ │ ├── effects_queue_test.html │ │ │ │ ├── effects_random_demo.html │ │ │ │ ├── effects_test.html │ │ │ │ ├── effects_toggle_test.html │ │ │ │ ├── icon.png │ │ │ │ ├── index.html │ │ │ │ ├── position_clone_test.html │ │ │ │ ├── slider_test.html │ │ │ │ ├── sortable2_test.html │ │ │ │ ├── sortable3_test.html │ │ │ │ ├── sortable4_test.html │ │ │ │ ├── sortable5_test.html │ │ │ │ ├── sortable6_test.html │ │ │ │ ├── sortable_nested_test.html │ │ │ │ ├── sortable_test.html │ │ │ │ ├── sortable_tree_test.html │ │ │ │ ├── sound_test.html │ │ │ │ ├── sword.mp3 │ │ │ │ └── texteffects_test.html │ │ │ │ ├── run_functional_tests.html │ │ │ │ ├── run_unit_tests.html │ │ │ │ ├── test.css │ │ │ │ └── unit │ │ │ │ ├── _ajax_inplaceeditor_ipce_alt_text.html │ │ │ │ ├── _ajax_inplaceeditor_result.html │ │ │ │ ├── _ajax_inplaceeditor_result2.html │ │ │ │ ├── _ajax_inplaceeditor_tagged.html │ │ │ │ ├── _ajax_inplaceeditor_text.html │ │ │ │ ├── _ajax_updater_result.html │ │ │ │ ├── _autocomplete_result.html │ │ │ │ ├── _autocomplete_result_nobr.html │ │ │ │ ├── ajax_autocompleter_test.html │ │ │ │ ├── ajax_inplaceeditor_test.html │ │ │ │ ├── bdd_test.html │ │ │ │ ├── builder_test.html │ │ │ │ ├── dragdrop_test.html │ │ │ │ ├── effects_test.html │ │ │ │ ├── element_test.html │ │ │ │ ├── icon.png │ │ │ │ ├── index.html │ │ │ │ ├── loading_test.html │ │ │ │ ├── position_clone_test.html │ │ │ │ ├── slider_test.html │ │ │ │ ├── sortable_test.html │ │ │ │ ├── string_test.html │ │ │ │ └── unittest_test.html │ │ ├── scriptaculous.js │ │ ├── slider.js │ │ ├── sound.js │ │ └── unittest.js │ │ ├── lib.php │ │ ├── overview.php │ │ ├── progress.perl │ │ ├── setup │ │ ├── sgviz.js │ │ ├── sgviz.php │ │ └── spinner.gif ├── fuzzy-match │ ├── .cproject │ ├── .project │ └── create_xml.perl ├── generic │ ├── binarize4moses2.perl │ ├── bsbleu.py │ ├── compound-splitter.perl │ ├── extract-factors.pl │ ├── extract-parallel.perl │ ├── fsa-sample.fsa │ ├── fsa2fsal.pl │ ├── fsa2plf.pl │ ├── fsal2fsa.pl │ ├── generic-parallel.perl │ ├── giza-parallel.perl │ ├── lopar2pos.pl │ ├── moses-parallel.pl │ ├── moses_sim_pe.py │ ├── mteval-v11b.pl │ ├── mteval-v12.pl │ ├── mteval-v13a.pl │ ├── mteval-v14.pl │ ├── multi-bleu-detok.perl │ ├── multi-bleu.perl │ ├── multi_moses.py │ ├── ph_numbers.perl │ ├── qsub-wrapper.pl │ ├── reverse-alignment.perl │ ├── score-parallel.perl │ ├── score_parallel.py │ ├── strip-xml.perl │ └── trainlm-irst2.perl ├── nbest-rescore │ ├── README.md │ ├── rescore.py │ ├── topbest.py │ └── train.py ├── other │ ├── beautify.py │ ├── blame-stat.sh │ ├── buckwalter.perl │ ├── convert-pt.perl │ ├── delete-scores.perl │ ├── gacha_filter.py │ ├── get_many_translations_from_google.perl │ ├── retain-lines.perl │ └── translate_by_microsoft_bing.perl ├── recaser │ ├── detruecase.perl │ ├── recase.perl │ ├── train-recaser.perl │ ├── train-truecaser.perl │ └── truecase.perl ├── regression-testing │ ├── MosesScriptsRegressionTesting.pm │ ├── compare-results.pl │ ├── create_localized_moses_ini.pl │ ├── modify-pars.pl │ ├── moses-scripts-reg-test-data-1.0 │ │ ├── lm │ │ │ └── train.en.w5.msb.nops.blm │ │ └── models │ │ │ ├── phrase-table.0-0.gz │ │ │ └── reordering-table.msd-bidirectional-fe.0.5.0-0.gz │ ├── moses-virtual │ ├── moses-virtual.pl │ ├── run-single-test.pl │ ├── run-test-suite.pl │ └── tests │ │ ├── mert-moses-new-aggregate │ │ ├── command │ │ ├── data │ │ │ ├── archive.list │ │ │ ├── run1.NBEST.out.gz │ │ │ ├── run1.TRANS.out │ │ │ ├── run10.NBEST.out.gz │ │ │ ├── run10.TRANS.out │ │ │ ├── run11.NBEST.out.gz │ │ │ ├── run11.TRANS.out │ │ │ ├── run12.NBEST.out.gz │ │ │ ├── run12.TRANS.out │ │ │ ├── run13.NBEST.out.gz │ │ │ ├── run13.TRANS.out │ │ │ ├── run14.NBEST.out.gz │ │ │ ├── run14.TRANS.out │ │ │ ├── run2.NBEST.out.gz │ │ │ ├── run2.TRANS.out │ │ │ ├── run3.NBEST.out.gz │ │ │ ├── run3.TRANS.out │ │ │ ├── run4.NBEST.out.gz │ │ │ ├── run4.TRANS.out │ │ │ ├── run5.NBEST.out.gz │ │ │ ├── run5.TRANS.out │ │ │ ├── run6.NBEST.out.gz │ │ │ ├── run6.TRANS.out │ │ │ ├── run7.NBEST.out.gz │ │ │ ├── run7.TRANS.out │ │ │ ├── run8.NBEST.out.gz │ │ │ ├── run8.TRANS.out │ │ │ ├── run9.NBEST.out.gz │ │ │ └── run9.TRANS.out │ │ ├── filter-stderr │ │ ├── filter-stdout │ │ ├── input │ │ ├── moses.ini │ │ ├── reference.0 │ │ ├── reference.1 │ │ ├── reference.2 │ │ └── truth │ │ │ └── results.dat │ │ ├── mert-moses-new-continue │ │ ├── command │ │ ├── data │ │ │ ├── actual.index │ │ │ ├── archive.list │ │ │ ├── finished_step.txt │ │ │ ├── run1.features.dat │ │ │ ├── run1.scores.dat │ │ │ ├── run2.features.dat │ │ │ ├── run2.scores.dat │ │ │ ├── run3.features.dat │ │ │ ├── run3.scores.dat │ │ │ ├── run4.features.dat │ │ │ ├── run4.scores.dat │ │ │ ├── run5.features.dat │ │ │ ├── run5.mert.log │ │ │ ├── run5.names.txt │ │ │ ├── run5.scores.dat │ │ │ ├── run5.weights.txt │ │ │ ├── run6.NBEST.out.gz │ │ │ ├── run6.TRANS.out │ │ │ ├── run7.NBEST.out.gz │ │ │ └── run7.TRANS.out │ │ ├── filter-stderr │ │ ├── filter-stdout │ │ ├── input │ │ ├── moses.ini │ │ ├── reference.0 │ │ ├── reference.1 │ │ ├── reference.2 │ │ └── truth │ │ │ └── results.dat │ │ ├── mert-moses-new-nocase │ │ ├── command │ │ ├── data │ │ │ ├── archive.list │ │ │ ├── run1.NBEST.out.gz │ │ │ ├── run1.TRANS.out │ │ │ ├── run2.NBEST.out.gz │ │ │ ├── run2.TRANS.out │ │ │ ├── run3.NBEST.out.gz │ │ │ ├── run3.TRANS.out │ │ │ ├── run4.NBEST.out.gz │ │ │ ├── run4.TRANS.out │ │ │ ├── run5.NBEST.out.gz │ │ │ └── run5.TRANS.out │ │ ├── filter-stderr │ │ ├── filter-stdout │ │ ├── input │ │ ├── moses.ini │ │ ├── reference.0 │ │ ├── reference.1 │ │ ├── reference.2 │ │ └── truth │ │ │ └── results.dat │ │ └── mert-moses-new │ │ ├── command │ │ ├── data │ │ ├── archive.list │ │ ├── run1.NBEST.out.gz │ │ ├── run1.TRANS.out │ │ ├── run2.NBEST.out.gz │ │ ├── run2.TRANS.out │ │ ├── run3.NBEST.out.gz │ │ ├── run3.TRANS.out │ │ ├── run4.NBEST.out.gz │ │ ├── run4.TRANS.out │ │ ├── run5.NBEST.out.gz │ │ ├── run5.TRANS.out │ │ ├── run6.NBEST.out.gz │ │ ├── run6.TRANS.out │ │ ├── run7.NBEST.out.gz │ │ └── run7.TRANS.out │ │ ├── filter-stderr │ │ ├── filter-stdout │ │ ├── input │ │ ├── moses.ini │ │ ├── reference.0 │ │ ├── reference.1 │ │ ├── reference.2 │ │ └── truth │ │ └── results.dat ├── server │ ├── moses.py │ └── sim-pe.py ├── share │ └── nonbreaking_prefixes │ │ ├── README.txt │ │ ├── nonbreaking_prefix.as │ │ ├── nonbreaking_prefix.bn │ │ ├── nonbreaking_prefix.ca │ │ ├── nonbreaking_prefix.cs │ │ ├── nonbreaking_prefix.de │ │ ├── nonbreaking_prefix.el │ │ ├── nonbreaking_prefix.en │ │ ├── nonbreaking_prefix.es │ │ ├── nonbreaking_prefix.et │ │ ├── nonbreaking_prefix.fi │ │ ├── nonbreaking_prefix.fr │ │ ├── nonbreaking_prefix.ga │ │ ├── nonbreaking_prefix.gu │ │ ├── nonbreaking_prefix.hi │ │ ├── nonbreaking_prefix.hu │ │ ├── nonbreaking_prefix.is │ │ ├── nonbreaking_prefix.it │ │ ├── nonbreaking_prefix.kn │ │ ├── nonbreaking_prefix.lt │ │ ├── nonbreaking_prefix.lv │ │ ├── nonbreaking_prefix.ml │ │ ├── nonbreaking_prefix.mni │ │ ├── nonbreaking_prefix.mr │ │ ├── nonbreaking_prefix.nl │ │ ├── nonbreaking_prefix.or │ │ ├── nonbreaking_prefix.pa │ │ ├── nonbreaking_prefix.pl │ │ ├── nonbreaking_prefix.pt │ │ ├── nonbreaking_prefix.ro │ │ ├── nonbreaking_prefix.ru │ │ ├── nonbreaking_prefix.sk │ │ ├── nonbreaking_prefix.sl │ │ ├── nonbreaking_prefix.sv │ │ ├── nonbreaking_prefix.ta │ │ ├── nonbreaking_prefix.tdt │ │ ├── nonbreaking_prefix.te │ │ ├── nonbreaking_prefix.yue │ │ └── nonbreaking_prefix.zh ├── tests │ ├── README │ ├── cs-en-sample │ │ ├── lm.en.gz │ │ ├── test.ref │ │ ├── test.src │ │ ├── train.cs │ │ └── train.en │ ├── full-train-mert-decode.test │ └── train-factored-test-step9.test ├── tokenizer │ ├── basic-protected-patterns │ ├── deescape-special-chars-PTB.perl │ ├── deescape-special-chars.perl │ ├── delete-long-words.perl │ ├── detokenizer.perl │ ├── escape-special-chars.perl │ ├── lowercase.perl │ ├── mosestokenizer │ │ ├── __init__.py │ │ ├── detokenizer.py │ │ ├── punctnormalizer.py │ │ ├── sentsplitter.py │ │ └── tokenizer.py │ ├── normalize-punctuation.perl │ ├── pre-tok-clean.perl │ ├── pre-tokenizer.perl │ ├── pre_tokenize_cleaning.py │ ├── remove-non-printing-char.perl │ ├── replace-unicode-punctuation.perl │ ├── tokenizer.perl │ └── tokenizer_PTB.perl └── training │ ├── Jamfile │ ├── LexicalTranslationModel.pm │ ├── absolutize_moses_model.pl │ ├── analyse_moses_model.pl │ ├── bilingual-lm │ ├── README │ ├── averageNullEmbedding.py │ ├── create_blm_ini.py │ ├── extract.py │ ├── extract_test.py │ ├── extract_training.py │ ├── reduce_ngrams.py │ ├── tag.sh │ ├── test_nplm.py │ └── train_nplm.py │ ├── binarize-model.perl │ ├── build-generation-table.perl │ ├── build-mmsapt.perl │ ├── clean-corpus-n-ratio.perl │ ├── clean-corpus-n.perl │ ├── clone_moses_model.pl │ ├── combine_factors.pl │ ├── combine_factors_syntax.pl │ ├── convert-moses-ini-to-v2.perl │ ├── corpus-sizes.perl │ ├── create_count_tables.py │ ├── create_nplm_ini.py │ ├── exodus.perl │ ├── filter-model-given-input.pl │ ├── filter-rule-table.py │ ├── flexibility_score.py │ ├── get-lexical.perl │ ├── giza2bal.pl │ ├── mert-moses.pl │ ├── postprocess-lopar.perl │ ├── rdlm │ ├── README │ ├── average_null_embedding.py │ ├── extract_syntactic_ngrams.py │ ├── extract_vocab.py │ └── train_rdlm.py │ ├── reduce-factors.perl │ ├── reduce-topt-count.pl │ ├── reduce_combine.pl │ ├── remove-orphan-phrase-pairs-from-reordering-table.perl │ ├── strip-xml.perl │ ├── threshold-filter.perl │ ├── train-global-lexicon-model.perl │ ├── train-model.perl │ ├── train-neurallm.py │ ├── wrap_moses.py │ └── wrappers │ ├── adam-suffix-array │ ├── suffix-array-create.sh │ └── suffix-array-extract.sh │ ├── berkeleyparsed2mosesxml.perl │ ├── berkeleyparsed2mosesxml_PTB.perl │ ├── conll2mosesxml.py │ ├── filter-excluded-lines.perl │ ├── find-unparseable.perl │ ├── mada-wrapper.perl │ ├── madamira-tok.perl │ ├── madamira-wrapper.perl │ ├── make-factor-brown-cluster-mkcls.perl │ ├── make-factor-de-lemma.perl │ ├── make-factor-de-morph.perl │ ├── make-factor-de-pos.perl │ ├── make-factor-en-porter.perl │ ├── make-factor-en-pos.mxpost.perl │ ├── make-factor-pos.tree-tagger.perl │ ├── make-factor-stem.perl │ ├── make-factor-suffix.perl │ ├── morfessor-wrapper.perl │ ├── mosesxml2berkeleyparsed.perl │ ├── mosesxml2brackets.py │ ├── parse-de-berkeley.perl │ ├── parse-de-bitpar.perl │ ├── parse-en-bllip.perl │ ├── parse-en-collins.perl │ ├── parse-en-egret.perl │ ├── parse-en-senna.perl │ ├── parse-en-stanford.py │ ├── senna2brackets.py │ ├── syntax-hyphen-splitting.perl │ ├── tagger-german-chunk.perl │ └── tree-converter-mosesxml.sh ├── search ├── Jamfile ├── applied.hh ├── config.hh ├── context.hh ├── edge.hh ├── edge_generator.cc ├── edge_generator.hh ├── header.hh ├── nbest.cc ├── nbest.hh ├── rule.cc ├── rule.hh ├── types.hh ├── vertex.cc ├── vertex.hh └── vertex_generator.hh ├── symal ├── Jamfile ├── cmd.c ├── cmd.h ├── symal.cpp └── symal.vcproj ├── util ├── CMakeLists.txt ├── Jamfile ├── bit_packing.cc ├── bit_packing.hh ├── bit_packing_test.cc ├── cat_compressed_main.cc ├── double-conversion │ ├── CMakeLists.txt │ ├── Jamfile │ ├── LICENSE │ ├── bignum-dtoa.cc │ ├── bignum-dtoa.h │ ├── bignum.cc │ ├── bignum.h │ ├── cached-powers.cc │ ├── cached-powers.h │ ├── diy-fp.cc │ ├── diy-fp.h │ ├── double-conversion.cc │ ├── double-conversion.h │ ├── fast-dtoa.cc │ ├── fast-dtoa.h │ ├── fixed-dtoa.cc │ ├── fixed-dtoa.h │ ├── ieee.h │ ├── strtod.cc │ ├── strtod.h │ └── utils.h ├── ersatz_progress.cc ├── ersatz_progress.hh ├── exception.cc ├── exception.hh ├── fake_ostream.hh ├── file.cc ├── file.hh ├── file_piece.cc ├── file_piece.hh ├── file_piece_test.cc ├── file_stream.hh ├── fixed_array.hh ├── float_to_string.cc ├── float_to_string.hh ├── generator.hh ├── getopt.c ├── getopt.hh ├── have.hh ├── integer_to_string.cc ├── integer_to_string.hh ├── integer_to_string_test.cc ├── joint_sort.hh ├── joint_sort_test.cc ├── mmap.cc ├── mmap.hh ├── multi_intersection.hh ├── multi_intersection_test.cc ├── murmur_hash.cc ├── murmur_hash.hh ├── parallel_read.cc ├── parallel_read.hh ├── pcqueue.hh ├── pcqueue_test.cc ├── pool.cc ├── pool.hh ├── probing_hash_table.hh ├── probing_hash_table_benchmark_main.cc ├── probing_hash_table_test.cc ├── proxy_iterator.hh ├── random.cc ├── random.hh ├── random_test.cc ├── read_compressed.cc ├── read_compressed.hh ├── read_compressed_test.cc ├── scoped.cc ├── scoped.hh ├── sized_iterator.hh ├── sized_iterator_test.cc ├── sorted_uniform.hh ├── sorted_uniform_test.cc ├── stream │ ├── CMakeLists.txt │ ├── Jamfile │ ├── block.hh │ ├── chain.cc │ ├── chain.hh │ ├── config.hh │ ├── count_records.cc │ ├── count_records.hh │ ├── io.cc │ ├── io.hh │ ├── io_test.cc │ ├── line_input.cc │ ├── line_input.hh │ ├── multi_progress.cc │ ├── multi_progress.hh │ ├── multi_stream.hh │ ├── rewindable_stream.cc │ ├── rewindable_stream.hh │ ├── rewindable_stream_test.cc │ ├── sort.hh │ ├── sort_test.cc │ ├── stream.hh │ ├── stream_test.cc │ └── timer.hh ├── string_piece.cc ├── string_piece.hh ├── string_piece_hash.hh ├── string_stream.hh ├── string_stream_test.cc ├── tempfile.hh ├── tempfile_test.cc ├── thread_pool.hh ├── tokenize.hh ├── tokenize_piece.hh ├── tokenize_piece_test.cc ├── tokenize_test.cc ├── usage.cc └── usage.hh └── vw ├── Classifier.h ├── ClassifierFactory.cpp ├── Jamfile ├── Normalizer.h ├── README.md ├── VWPredictor.cpp └── VWTrainer.cpp /.beautify-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/.beautify-ignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/COPYING -------------------------------------------------------------------------------- /Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/Jamroot -------------------------------------------------------------------------------- /OnDiskPt/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Jamfile -------------------------------------------------------------------------------- /OnDiskPt/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Main.cpp -------------------------------------------------------------------------------- /OnDiskPt/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Main.h -------------------------------------------------------------------------------- /OnDiskPt/OnDiskQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/OnDiskQuery.cpp -------------------------------------------------------------------------------- /OnDiskPt/OnDiskQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/OnDiskQuery.h -------------------------------------------------------------------------------- /OnDiskPt/OnDiskWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/OnDiskWrapper.h -------------------------------------------------------------------------------- /OnDiskPt/Phrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Phrase.cpp -------------------------------------------------------------------------------- /OnDiskPt/Phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Phrase.h -------------------------------------------------------------------------------- /OnDiskPt/PhraseNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/PhraseNode.cpp -------------------------------------------------------------------------------- /OnDiskPt/PhraseNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/PhraseNode.h -------------------------------------------------------------------------------- /OnDiskPt/SourcePhrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/SourcePhrase.cpp -------------------------------------------------------------------------------- /OnDiskPt/SourcePhrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/SourcePhrase.h -------------------------------------------------------------------------------- /OnDiskPt/TargetPhrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/TargetPhrase.cpp -------------------------------------------------------------------------------- /OnDiskPt/TargetPhrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/TargetPhrase.h -------------------------------------------------------------------------------- /OnDiskPt/Vocab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Vocab.cpp -------------------------------------------------------------------------------- /OnDiskPt/Vocab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Vocab.h -------------------------------------------------------------------------------- /OnDiskPt/Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Word.cpp -------------------------------------------------------------------------------- /OnDiskPt/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/OnDiskPt/Word.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/README -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /biconcor/Alignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/Alignment.cpp -------------------------------------------------------------------------------- /biconcor/Alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/Alignment.h -------------------------------------------------------------------------------- /biconcor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/CMakeLists.txt -------------------------------------------------------------------------------- /biconcor/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/Jamfile -------------------------------------------------------------------------------- /biconcor/Mismatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/Mismatch.cpp -------------------------------------------------------------------------------- /biconcor/Mismatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/Mismatch.h -------------------------------------------------------------------------------- /biconcor/PhrasePair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/PhrasePair.cpp -------------------------------------------------------------------------------- /biconcor/PhrasePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/PhrasePair.h -------------------------------------------------------------------------------- /biconcor/SuffixArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/SuffixArray.cpp -------------------------------------------------------------------------------- /biconcor/SuffixArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/SuffixArray.h -------------------------------------------------------------------------------- /biconcor/TargetCorpus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/TargetCorpus.cpp -------------------------------------------------------------------------------- /biconcor/TargetCorpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/TargetCorpus.h -------------------------------------------------------------------------------- /biconcor/Vocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/Vocabulary.cpp -------------------------------------------------------------------------------- /biconcor/Vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/Vocabulary.h -------------------------------------------------------------------------------- /biconcor/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/base64.cpp -------------------------------------------------------------------------------- /biconcor/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/base64.h -------------------------------------------------------------------------------- /biconcor/biconcor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/biconcor/biconcor.cpp -------------------------------------------------------------------------------- /bjam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/bjam -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /chk.tmp: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /contrib/DIMwid/DIMputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/DIMwid/DIMputs.py -------------------------------------------------------------------------------- /contrib/DIMwid/DIMwid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/DIMwid/DIMwid.py -------------------------------------------------------------------------------- /contrib/DIMwid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/DIMwid/LICENSE -------------------------------------------------------------------------------- /contrib/DIMwid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/DIMwid/README.md -------------------------------------------------------------------------------- /contrib/arrow-pipelines/pcl/components/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/arrow-pipelines/pcl/components/wrappers/cleanup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/arrow-pipelines/pcl/components/wrappers/data_split/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/arrow-pipelines/pcl/components/wrappers/irstlm_build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/arrow-pipelines/pcl/components/wrappers/mert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/arrow-pipelines/pcl/components/wrappers/model_training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/arrow-pipelines/pcl/components/wrappers/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/checkplf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/checkplf/Makefile -------------------------------------------------------------------------------- /contrib/eppex/ISS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/ISS.h -------------------------------------------------------------------------------- /contrib/eppex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/Makefile.am -------------------------------------------------------------------------------- /contrib/eppex/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/Makefile.in -------------------------------------------------------------------------------- /contrib/eppex/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/aclocal.m4 -------------------------------------------------------------------------------- /contrib/eppex/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/config.h.in -------------------------------------------------------------------------------- /contrib/eppex/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/configure -------------------------------------------------------------------------------- /contrib/eppex/counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/counter.cpp -------------------------------------------------------------------------------- /contrib/eppex/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/depcomp -------------------------------------------------------------------------------- /contrib/eppex/eppex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/eppex.cpp -------------------------------------------------------------------------------- /contrib/eppex/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/install-sh -------------------------------------------------------------------------------- /contrib/eppex/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/missing -------------------------------------------------------------------------------- /contrib/eppex/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/shared.cpp -------------------------------------------------------------------------------- /contrib/eppex/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/shared.h -------------------------------------------------------------------------------- /contrib/eppex/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/eppex/typedefs.h -------------------------------------------------------------------------------- /contrib/goshen-chrome/popup/popup.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/iSenWeb/moses.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/iSenWeb/moses.pl -------------------------------------------------------------------------------- /contrib/lmserver/AUTHORS: -------------------------------------------------------------------------------- 1 | Chris Dyer 2 | -------------------------------------------------------------------------------- /contrib/lmserver/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/BUILD -------------------------------------------------------------------------------- /contrib/lmserver/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/COPYING -------------------------------------------------------------------------------- /contrib/lmserver/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/lmserver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/README -------------------------------------------------------------------------------- /contrib/lmserver/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/compile -------------------------------------------------------------------------------- /contrib/lmserver/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/daemon.c -------------------------------------------------------------------------------- /contrib/lmserver/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/depcomp -------------------------------------------------------------------------------- /contrib/lmserver/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/missing -------------------------------------------------------------------------------- /contrib/lmserver/srilm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/srilm.cc -------------------------------------------------------------------------------- /contrib/lmserver/srilm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/srilm.h -------------------------------------------------------------------------------- /contrib/lmserver/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /contrib/lmserver/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/stats.h -------------------------------------------------------------------------------- /contrib/lmserver/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/lmserver/thread.c -------------------------------------------------------------------------------- /contrib/m4m/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/m4m/Jamfile -------------------------------------------------------------------------------- /contrib/m4m/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/m4m/Makefile -------------------------------------------------------------------------------- /contrib/m4m/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/m4m/README -------------------------------------------------------------------------------- /contrib/m4m/util/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/m4m/util/Jamfile -------------------------------------------------------------------------------- /contrib/memscore/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/memscore/depcomp -------------------------------------------------------------------------------- /contrib/memscore/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/memscore/missing -------------------------------------------------------------------------------- /contrib/memscore/scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/memscore/scorer.h -------------------------------------------------------------------------------- /contrib/mira/Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Decoder.cpp -------------------------------------------------------------------------------- /contrib/mira/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Decoder.h -------------------------------------------------------------------------------- /contrib/mira/Hildreth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Hildreth.cpp -------------------------------------------------------------------------------- /contrib/mira/Hildreth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Hildreth.h -------------------------------------------------------------------------------- /contrib/mira/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Jamfile -------------------------------------------------------------------------------- /contrib/mira/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Main.cpp -------------------------------------------------------------------------------- /contrib/mira/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Main.h -------------------------------------------------------------------------------- /contrib/mira/MiraTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/MiraTest.cpp -------------------------------------------------------------------------------- /contrib/mira/Optimiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/Optimiser.h -------------------------------------------------------------------------------- /contrib/mira/expt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/mira/expt.cfg -------------------------------------------------------------------------------- /contrib/omtc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/omtc/README -------------------------------------------------------------------------------- /contrib/picaro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/picaro/README -------------------------------------------------------------------------------- /contrib/promix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/README.md -------------------------------------------------------------------------------- /contrib/promix/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/bleu.py -------------------------------------------------------------------------------- /contrib/promix/coll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/coll.py -------------------------------------------------------------------------------- /contrib/promix/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/main.py -------------------------------------------------------------------------------- /contrib/promix/nbest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/nbest.py -------------------------------------------------------------------------------- /contrib/promix/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/sampler.py -------------------------------------------------------------------------------- /contrib/promix/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/test.py -------------------------------------------------------------------------------- /contrib/promix/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/train.py -------------------------------------------------------------------------------- /contrib/promix/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/promix/util.py -------------------------------------------------------------------------------- /contrib/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/python/README.md -------------------------------------------------------------------------------- /contrib/python/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/python/example.py -------------------------------------------------------------------------------- /contrib/python/examples/phrase-table.binphr.idx: -------------------------------------------------------------------------------- 1 | cb@( -------------------------------------------------------------------------------- /contrib/python/examples/phrase-table.binphr.srcvoc: -------------------------------------------------------------------------------- 1 | 1 essa 2 | 0 casa 3 | -------------------------------------------------------------------------------- /contrib/python/examples/phrase-table.binphr.tgtvoc: -------------------------------------------------------------------------------- 1 | 3 this 2 | 2 location 3 | 1 house 4 | 0 building 5 | -------------------------------------------------------------------------------- /contrib/python/moses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/python/setup.py -------------------------------------------------------------------------------- /contrib/rephraser/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/rephraser/Jamfile -------------------------------------------------------------------------------- /contrib/rpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/rpm/README -------------------------------------------------------------------------------- /contrib/rt/Empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/rt/README -------------------------------------------------------------------------------- /contrib/rt/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/rt/compile.sh -------------------------------------------------------------------------------- /contrib/server/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/server/Jamfile -------------------------------------------------------------------------------- /contrib/server/Translation-web/src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /contrib/server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/server/client.py -------------------------------------------------------------------------------- /contrib/server/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/server/update.py -------------------------------------------------------------------------------- /contrib/web/bin/daemon.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/web/bin/daemon.pl -------------------------------------------------------------------------------- /contrib/web/index.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/web/index.cgi -------------------------------------------------------------------------------- /contrib/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/web/index.js -------------------------------------------------------------------------------- /contrib/web/translate.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/web/translate.cgi -------------------------------------------------------------------------------- /contrib/zmert-moses.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/contrib/zmert-moses.pl -------------------------------------------------------------------------------- /cruise-control/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/cruise-control/README -------------------------------------------------------------------------------- /cruise-control/config.ems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/cruise-control/config.ems -------------------------------------------------------------------------------- /defer/ExternalFeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/defer/ExternalFeature.cpp -------------------------------------------------------------------------------- /defer/ExternalFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/defer/ExternalFeature.h -------------------------------------------------------------------------------- /defer/Joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/defer/Joint.cpp -------------------------------------------------------------------------------- /defer/Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/defer/Joint.h -------------------------------------------------------------------------------- /doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/doxygen.conf -------------------------------------------------------------------------------- /env-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/env-check.yml -------------------------------------------------------------------------------- /jam-files/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/LICENSE_1_0.txt -------------------------------------------------------------------------------- /jam-files/boost-build/tools/doxygen/windows-paths-check.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jam-files/boost-build/tools/xsltproc/test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /jam-files/curlpp.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/curlpp.jam -------------------------------------------------------------------------------- /jam-files/engine/Jambase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/Jambase -------------------------------------------------------------------------------- /jam-files/engine/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/build.sh -------------------------------------------------------------------------------- /jam-files/engine/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/class.c -------------------------------------------------------------------------------- /jam-files/engine/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/class.h -------------------------------------------------------------------------------- /jam-files/engine/cwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/cwd.c -------------------------------------------------------------------------------- /jam-files/engine/cwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/cwd.h -------------------------------------------------------------------------------- /jam-files/engine/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/debug.c -------------------------------------------------------------------------------- /jam-files/engine/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/debug.h -------------------------------------------------------------------------------- /jam-files/engine/execnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/execnt.c -------------------------------------------------------------------------------- /jam-files/engine/filent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/filent.c -------------------------------------------------------------------------------- /jam-files/engine/frames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/frames.c -------------------------------------------------------------------------------- /jam-files/engine/frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/frames.h -------------------------------------------------------------------------------- /jam-files/engine/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/glob.c -------------------------------------------------------------------------------- /jam-files/engine/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/hash.c -------------------------------------------------------------------------------- /jam-files/engine/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/hash.h -------------------------------------------------------------------------------- /jam-files/engine/hcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/hcache.c -------------------------------------------------------------------------------- /jam-files/engine/hcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/hcache.h -------------------------------------------------------------------------------- /jam-files/engine/jam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/jam.c -------------------------------------------------------------------------------- /jam-files/engine/jam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/jam.h -------------------------------------------------------------------------------- /jam-files/engine/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/lists.c -------------------------------------------------------------------------------- /jam-files/engine/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/lists.h -------------------------------------------------------------------------------- /jam-files/engine/make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/make.c -------------------------------------------------------------------------------- /jam-files/engine/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/make.h -------------------------------------------------------------------------------- /jam-files/engine/make1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/make1.c -------------------------------------------------------------------------------- /jam-files/engine/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/md5.c -------------------------------------------------------------------------------- /jam-files/engine/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/md5.h -------------------------------------------------------------------------------- /jam-files/engine/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/mem.c -------------------------------------------------------------------------------- /jam-files/engine/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/mem.h -------------------------------------------------------------------------------- /jam-files/engine/native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/native.c -------------------------------------------------------------------------------- /jam-files/engine/native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/native.h -------------------------------------------------------------------------------- /jam-files/engine/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/object.c -------------------------------------------------------------------------------- /jam-files/engine/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/object.h -------------------------------------------------------------------------------- /jam-files/engine/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/option.c -------------------------------------------------------------------------------- /jam-files/engine/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/option.h -------------------------------------------------------------------------------- /jam-files/engine/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/output.c -------------------------------------------------------------------------------- /jam-files/engine/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/output.h -------------------------------------------------------------------------------- /jam-files/engine/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/parse.c -------------------------------------------------------------------------------- /jam-files/engine/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/parse.h -------------------------------------------------------------------------------- /jam-files/engine/pathnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/pathnt.c -------------------------------------------------------------------------------- /jam-files/engine/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/regexp.c -------------------------------------------------------------------------------- /jam-files/engine/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/regexp.h -------------------------------------------------------------------------------- /jam-files/engine/rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/rules.c -------------------------------------------------------------------------------- /jam-files/engine/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/rules.h -------------------------------------------------------------------------------- /jam-files/engine/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/scan.c -------------------------------------------------------------------------------- /jam-files/engine/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/scan.h -------------------------------------------------------------------------------- /jam-files/engine/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/search.c -------------------------------------------------------------------------------- /jam-files/engine/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/search.h -------------------------------------------------------------------------------- /jam-files/engine/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/subst.c -------------------------------------------------------------------------------- /jam-files/engine/subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/subst.h -------------------------------------------------------------------------------- /jam-files/engine/yyacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/engine/yyacc.c -------------------------------------------------------------------------------- /jam-files/fail/Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/fail/Jamroot -------------------------------------------------------------------------------- /jam-files/sanity.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/sanity.jam -------------------------------------------------------------------------------- /jam-files/xmlrpc-c.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/jam-files/xmlrpc-c.jam -------------------------------------------------------------------------------- /lm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/CMakeLists.txt -------------------------------------------------------------------------------- /lm/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/Jamfile -------------------------------------------------------------------------------- /lm/bhiksha.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/bhiksha.cc -------------------------------------------------------------------------------- /lm/bhiksha.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/bhiksha.hh -------------------------------------------------------------------------------- /lm/binary_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/binary_format.cc -------------------------------------------------------------------------------- /lm/binary_format.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/binary_format.hh -------------------------------------------------------------------------------- /lm/blank.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/blank.hh -------------------------------------------------------------------------------- /lm/build_binary_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/build_binary_main.cc -------------------------------------------------------------------------------- /lm/builder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/CMakeLists.txt -------------------------------------------------------------------------------- /lm/builder/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/Jamfile -------------------------------------------------------------------------------- /lm/builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/README.md -------------------------------------------------------------------------------- /lm/builder/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/TODO -------------------------------------------------------------------------------- /lm/builder/debug_print.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/debug_print.hh -------------------------------------------------------------------------------- /lm/builder/discount.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/discount.hh -------------------------------------------------------------------------------- /lm/builder/hash_gamma.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/hash_gamma.hh -------------------------------------------------------------------------------- /lm/builder/header_info.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/header_info.hh -------------------------------------------------------------------------------- /lm/builder/interpolate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/interpolate.cc -------------------------------------------------------------------------------- /lm/builder/interpolate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/interpolate.hh -------------------------------------------------------------------------------- /lm/builder/lmplz_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/lmplz_main.cc -------------------------------------------------------------------------------- /lm/builder/output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/output.cc -------------------------------------------------------------------------------- /lm/builder/output.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/output.hh -------------------------------------------------------------------------------- /lm/builder/payload.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/payload.hh -------------------------------------------------------------------------------- /lm/builder/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/pipeline.cc -------------------------------------------------------------------------------- /lm/builder/pipeline.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/builder/pipeline.hh -------------------------------------------------------------------------------- /lm/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/CMakeLists.txt -------------------------------------------------------------------------------- /lm/common/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/Jamfile -------------------------------------------------------------------------------- /lm/common/compare.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/compare.hh -------------------------------------------------------------------------------- /lm/common/joint_order.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/joint_order.hh -------------------------------------------------------------------------------- /lm/common/model_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/model_buffer.cc -------------------------------------------------------------------------------- /lm/common/model_buffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/model_buffer.hh -------------------------------------------------------------------------------- /lm/common/ngram.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/ngram.hh -------------------------------------------------------------------------------- /lm/common/ngram_stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/ngram_stream.hh -------------------------------------------------------------------------------- /lm/common/print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/print.cc -------------------------------------------------------------------------------- /lm/common/print.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/print.hh -------------------------------------------------------------------------------- /lm/common/renumber.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/renumber.cc -------------------------------------------------------------------------------- /lm/common/renumber.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/renumber.hh -------------------------------------------------------------------------------- /lm/common/size_option.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/size_option.cc -------------------------------------------------------------------------------- /lm/common/size_option.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/size_option.hh -------------------------------------------------------------------------------- /lm/common/special.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/common/special.hh -------------------------------------------------------------------------------- /lm/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/config.cc -------------------------------------------------------------------------------- /lm/config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/config.hh -------------------------------------------------------------------------------- /lm/enumerate_vocab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/enumerate_vocab.hh -------------------------------------------------------------------------------- /lm/facade.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/facade.hh -------------------------------------------------------------------------------- /lm/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/CMakeLists.txt -------------------------------------------------------------------------------- /lm/filter/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/Jamfile -------------------------------------------------------------------------------- /lm/filter/arpa_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/arpa_io.cc -------------------------------------------------------------------------------- /lm/filter/arpa_io.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/arpa_io.hh -------------------------------------------------------------------------------- /lm/filter/count_io.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/count_io.hh -------------------------------------------------------------------------------- /lm/filter/filter_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/filter_main.cc -------------------------------------------------------------------------------- /lm/filter/format.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/format.hh -------------------------------------------------------------------------------- /lm/filter/phrase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/phrase.cc -------------------------------------------------------------------------------- /lm/filter/phrase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/phrase.hh -------------------------------------------------------------------------------- /lm/filter/thread.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/thread.hh -------------------------------------------------------------------------------- /lm/filter/vocab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/vocab.cc -------------------------------------------------------------------------------- /lm/filter/vocab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/vocab.hh -------------------------------------------------------------------------------- /lm/filter/wrapper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/filter/wrapper.hh -------------------------------------------------------------------------------- /lm/fragment_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/fragment_main.cc -------------------------------------------------------------------------------- /lm/left.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/left.hh -------------------------------------------------------------------------------- /lm/left_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/left_test.cc -------------------------------------------------------------------------------- /lm/lm_exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/lm_exception.cc -------------------------------------------------------------------------------- /lm/lm_exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/lm_exception.hh -------------------------------------------------------------------------------- /lm/max_order.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/max_order.hh -------------------------------------------------------------------------------- /lm/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/model.cc -------------------------------------------------------------------------------- /lm/model.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/model.hh -------------------------------------------------------------------------------- /lm/model_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/model_test.cc -------------------------------------------------------------------------------- /lm/model_type.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/model_type.hh -------------------------------------------------------------------------------- /lm/ngram_query.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/ngram_query.hh -------------------------------------------------------------------------------- /lm/partial.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/partial.hh -------------------------------------------------------------------------------- /lm/partial_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/partial_test.cc -------------------------------------------------------------------------------- /lm/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/quantize.cc -------------------------------------------------------------------------------- /lm/quantize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/quantize.hh -------------------------------------------------------------------------------- /lm/query_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/query_main.cc -------------------------------------------------------------------------------- /lm/read_arpa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/read_arpa.cc -------------------------------------------------------------------------------- /lm/read_arpa.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/read_arpa.hh -------------------------------------------------------------------------------- /lm/return.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/return.hh -------------------------------------------------------------------------------- /lm/search_hashed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/search_hashed.cc -------------------------------------------------------------------------------- /lm/search_hashed.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/search_hashed.hh -------------------------------------------------------------------------------- /lm/search_trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/search_trie.cc -------------------------------------------------------------------------------- /lm/search_trie.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/search_trie.hh -------------------------------------------------------------------------------- /lm/sizes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/sizes.cc -------------------------------------------------------------------------------- /lm/sizes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/sizes.hh -------------------------------------------------------------------------------- /lm/state.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/state.hh -------------------------------------------------------------------------------- /lm/test.arpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/test.arpa -------------------------------------------------------------------------------- /lm/test_nounk.arpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/test_nounk.arpa -------------------------------------------------------------------------------- /lm/trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/trie.cc -------------------------------------------------------------------------------- /lm/trie.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/trie.hh -------------------------------------------------------------------------------- /lm/trie_sort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/trie_sort.cc -------------------------------------------------------------------------------- /lm/trie_sort.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/trie_sort.hh -------------------------------------------------------------------------------- /lm/value.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/value.hh -------------------------------------------------------------------------------- /lm/value_build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/value_build.cc -------------------------------------------------------------------------------- /lm/value_build.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/value_build.hh -------------------------------------------------------------------------------- /lm/virtual_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/virtual_interface.cc -------------------------------------------------------------------------------- /lm/virtual_interface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/virtual_interface.hh -------------------------------------------------------------------------------- /lm/vocab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/vocab.cc -------------------------------------------------------------------------------- /lm/vocab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/vocab.hh -------------------------------------------------------------------------------- /lm/weights.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/weights.hh -------------------------------------------------------------------------------- /lm/word_index.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/word_index.hh -------------------------------------------------------------------------------- /lm/wrappers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/wrappers/README -------------------------------------------------------------------------------- /lm/wrappers/nplm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/wrappers/nplm.cc -------------------------------------------------------------------------------- /lm/wrappers/nplm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/lm/wrappers/nplm.hh -------------------------------------------------------------------------------- /mert/BleuDocScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/BleuDocScorer.cpp -------------------------------------------------------------------------------- /mert/BleuDocScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/BleuDocScorer.h -------------------------------------------------------------------------------- /mert/BleuScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/BleuScorer.cpp -------------------------------------------------------------------------------- /mert/BleuScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/BleuScorer.h -------------------------------------------------------------------------------- /mert/BleuScorerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/BleuScorerTest.cpp -------------------------------------------------------------------------------- /mert/CHRFScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/CHRFScorer.cpp -------------------------------------------------------------------------------- /mert/CHRFScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/CHRFScorer.h -------------------------------------------------------------------------------- /mert/CderScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/CderScorer.cpp -------------------------------------------------------------------------------- /mert/CderScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/CderScorer.h -------------------------------------------------------------------------------- /mert/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Data.cpp -------------------------------------------------------------------------------- /mert/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Data.h -------------------------------------------------------------------------------- /mert/DataTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/DataTest.cpp -------------------------------------------------------------------------------- /mert/Fdstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Fdstream.h -------------------------------------------------------------------------------- /mert/FeatureArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FeatureArray.cpp -------------------------------------------------------------------------------- /mert/FeatureArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FeatureArray.h -------------------------------------------------------------------------------- /mert/FeatureData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FeatureData.cpp -------------------------------------------------------------------------------- /mert/FeatureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FeatureData.h -------------------------------------------------------------------------------- /mert/FeatureDataTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FeatureDataTest.cpp -------------------------------------------------------------------------------- /mert/FeatureStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FeatureStats.cpp -------------------------------------------------------------------------------- /mert/FeatureStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FeatureStats.h -------------------------------------------------------------------------------- /mert/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FileStream.cpp -------------------------------------------------------------------------------- /mert/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/FileStream.h -------------------------------------------------------------------------------- /mert/ForestRescore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ForestRescore.cpp -------------------------------------------------------------------------------- /mert/ForestRescore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ForestRescore.h -------------------------------------------------------------------------------- /mert/GzFileBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/GzFileBuf.cpp -------------------------------------------------------------------------------- /mert/GzFileBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/GzFileBuf.h -------------------------------------------------------------------------------- /mert/HopeFearDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/HopeFearDecoder.cpp -------------------------------------------------------------------------------- /mert/HopeFearDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/HopeFearDecoder.h -------------------------------------------------------------------------------- /mert/HwcmScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/HwcmScorer.cpp -------------------------------------------------------------------------------- /mert/HwcmScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/HwcmScorer.h -------------------------------------------------------------------------------- /mert/HypPackEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/HypPackEnumerator.h -------------------------------------------------------------------------------- /mert/Hypergraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Hypergraph.cpp -------------------------------------------------------------------------------- /mert/Hypergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Hypergraph.h -------------------------------------------------------------------------------- /mert/HypergraphTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/HypergraphTest.cpp -------------------------------------------------------------------------------- /mert/InternalTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/InternalTree.cpp -------------------------------------------------------------------------------- /mert/InternalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/InternalTree.h -------------------------------------------------------------------------------- /mert/InterpolatedScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/InterpolatedScorer.h -------------------------------------------------------------------------------- /mert/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Jamfile -------------------------------------------------------------------------------- /mert/M2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/M2.cpp -------------------------------------------------------------------------------- /mert/M2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/M2.h -------------------------------------------------------------------------------- /mert/M2Scorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/M2Scorer.cpp -------------------------------------------------------------------------------- /mert/M2Scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/M2Scorer.h -------------------------------------------------------------------------------- /mert/MeteorScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/MeteorScorer.cpp -------------------------------------------------------------------------------- /mert/MeteorScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/MeteorScorer.h -------------------------------------------------------------------------------- /mert/MiraFeatureVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/MiraFeatureVector.h -------------------------------------------------------------------------------- /mert/MiraWeightVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/MiraWeightVector.cpp -------------------------------------------------------------------------------- /mert/MiraWeightVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/MiraWeightVector.h -------------------------------------------------------------------------------- /mert/Ngram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Ngram.h -------------------------------------------------------------------------------- /mert/NgramTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/NgramTest.cpp -------------------------------------------------------------------------------- /mert/Optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Optimizer.cpp -------------------------------------------------------------------------------- /mert/Optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Optimizer.h -------------------------------------------------------------------------------- /mert/OptimizerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/OptimizerFactory.cpp -------------------------------------------------------------------------------- /mert/OptimizerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/OptimizerFactory.h -------------------------------------------------------------------------------- /mert/PerScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/PerScorer.cpp -------------------------------------------------------------------------------- /mert/PerScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/PerScorer.h -------------------------------------------------------------------------------- /mert/Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Permutation.cpp -------------------------------------------------------------------------------- /mert/Permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Permutation.h -------------------------------------------------------------------------------- /mert/PermutationScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/PermutationScorer.h -------------------------------------------------------------------------------- /mert/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Point.cpp -------------------------------------------------------------------------------- /mert/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Point.h -------------------------------------------------------------------------------- /mert/PointTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/PointTest.cpp -------------------------------------------------------------------------------- /mert/PreProcessFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/PreProcessFilter.cpp -------------------------------------------------------------------------------- /mert/PreProcessFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/PreProcessFilter.h -------------------------------------------------------------------------------- /mert/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Reference.h -------------------------------------------------------------------------------- /mert/ReferenceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ReferenceTest.cpp -------------------------------------------------------------------------------- /mert/ScopedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScopedVector.h -------------------------------------------------------------------------------- /mert/ScoreArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScoreArray.cpp -------------------------------------------------------------------------------- /mert/ScoreArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScoreArray.h -------------------------------------------------------------------------------- /mert/ScoreData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScoreData.cpp -------------------------------------------------------------------------------- /mert/ScoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScoreData.h -------------------------------------------------------------------------------- /mert/ScoreDataIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScoreDataIterator.h -------------------------------------------------------------------------------- /mert/ScoreStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScoreStats.cpp -------------------------------------------------------------------------------- /mert/ScoreStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScoreStats.h -------------------------------------------------------------------------------- /mert/Scorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Scorer.cpp -------------------------------------------------------------------------------- /mert/Scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Scorer.h -------------------------------------------------------------------------------- /mert/ScorerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScorerFactory.cpp -------------------------------------------------------------------------------- /mert/ScorerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/ScorerFactory.h -------------------------------------------------------------------------------- /mert/SemposOverlapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/SemposOverlapping.h -------------------------------------------------------------------------------- /mert/SemposScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/SemposScorer.cpp -------------------------------------------------------------------------------- /mert/SemposScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/SemposScorer.h -------------------------------------------------------------------------------- /mert/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Singleton.h -------------------------------------------------------------------------------- /mert/SingletonTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/SingletonTest.cpp -------------------------------------------------------------------------------- /mert/TER/hashMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/hashMap.cpp -------------------------------------------------------------------------------- /mert/TER/hashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/hashMap.h -------------------------------------------------------------------------------- /mert/TER/hashMapInfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/hashMapInfos.cpp -------------------------------------------------------------------------------- /mert/TER/hashMapInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/hashMapInfos.h -------------------------------------------------------------------------------- /mert/TER/infosHasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/infosHasher.cpp -------------------------------------------------------------------------------- /mert/TER/infosHasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/infosHasher.h -------------------------------------------------------------------------------- /mert/TER/stringHasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/stringHasher.cpp -------------------------------------------------------------------------------- /mert/TER/stringHasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/stringHasher.h -------------------------------------------------------------------------------- /mert/TER/terAlignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/terAlignment.cpp -------------------------------------------------------------------------------- /mert/TER/terAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/terAlignment.h -------------------------------------------------------------------------------- /mert/TER/terShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/terShift.cpp -------------------------------------------------------------------------------- /mert/TER/terShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/terShift.h -------------------------------------------------------------------------------- /mert/TER/tercalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/tercalc.cpp -------------------------------------------------------------------------------- /mert/TER/tercalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/tercalc.h -------------------------------------------------------------------------------- /mert/TER/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/tools.cpp -------------------------------------------------------------------------------- /mert/TER/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TER/tools.h -------------------------------------------------------------------------------- /mert/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TODO -------------------------------------------------------------------------------- /mert/TerScorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TerScorer.cpp -------------------------------------------------------------------------------- /mert/TerScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TerScorer.h -------------------------------------------------------------------------------- /mert/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Timer.cpp -------------------------------------------------------------------------------- /mert/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Timer.h -------------------------------------------------------------------------------- /mert/TimerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/TimerTest.cpp -------------------------------------------------------------------------------- /mert/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Types.h -------------------------------------------------------------------------------- /mert/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Util.cpp -------------------------------------------------------------------------------- /mert/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Util.h -------------------------------------------------------------------------------- /mert/UtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/UtilTest.cpp -------------------------------------------------------------------------------- /mert/Vocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Vocabulary.cpp -------------------------------------------------------------------------------- /mert/Vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/Vocabulary.h -------------------------------------------------------------------------------- /mert/VocabularyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/VocabularyTest.cpp -------------------------------------------------------------------------------- /mert/evaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/evaluator.cpp -------------------------------------------------------------------------------- /mert/example/NBEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/example/NBEST -------------------------------------------------------------------------------- /mert/example/REF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/example/REF -------------------------------------------------------------------------------- /mert/example/REF.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/example/REF.0 -------------------------------------------------------------------------------- /mert/example/REF.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/example/REF.1 -------------------------------------------------------------------------------- /mert/example/REF.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/example/REF.2 -------------------------------------------------------------------------------- /mert/example/init.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/example/init.opt -------------------------------------------------------------------------------- /mert/extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/extractor.cpp -------------------------------------------------------------------------------- /mert/hgdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/hgdecode.cpp -------------------------------------------------------------------------------- /mert/kbmira.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/kbmira.cpp -------------------------------------------------------------------------------- /mert/mert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/mert.cpp -------------------------------------------------------------------------------- /mert/pro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/pro.cpp -------------------------------------------------------------------------------- /mert/sentence-bleu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mert/sentence-bleu.cpp -------------------------------------------------------------------------------- /mingw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/Makefile -------------------------------------------------------------------------------- /mingw/MosesGUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mingw/MosesGUI/credits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/MosesGUI/credits.py -------------------------------------------------------------------------------- /mingw/MosesGUI/credits.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/MosesGUI/credits.ui -------------------------------------------------------------------------------- /mingw/MosesGUI/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/MosesGUI/engine.py -------------------------------------------------------------------------------- /mingw/MosesGUI/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/MosesGUI/icons.qrc -------------------------------------------------------------------------------- /mingw/MosesGUI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/MosesGUI/main.py -------------------------------------------------------------------------------- /mingw/MosesGUI/moses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/MosesGUI/moses.py -------------------------------------------------------------------------------- /mingw/MosesGUI/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/mingw/MosesGUI/util.py -------------------------------------------------------------------------------- /misc/1-1-Extraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/1-1-Extraction.cpp -------------------------------------------------------------------------------- /misc/GenerateTuples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/GenerateTuples.cpp -------------------------------------------------------------------------------- /misc/GenerateTuples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/GenerateTuples.h -------------------------------------------------------------------------------- /misc/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/Jamfile -------------------------------------------------------------------------------- /misc/QueryProbingPT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/QueryProbingPT.cpp -------------------------------------------------------------------------------- /misc/addLexROtoPT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/addLexROtoPT.cpp -------------------------------------------------------------------------------- /misc/merge-sorted.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/merge-sorted.cc -------------------------------------------------------------------------------- /misc/pmoses/AUTHORS: -------------------------------------------------------------------------------- 1 | Felipe Sánchez-Martínez -- Universtat d'Alacant (Spain) 2 | -------------------------------------------------------------------------------- /misc/pmoses/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/pmoses/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pmoses/Makefile.am -------------------------------------------------------------------------------- /misc/pmoses/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/pmoses/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pmoses/README -------------------------------------------------------------------------------- /misc/pmoses/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pmoses/autogen.sh -------------------------------------------------------------------------------- /misc/pmoses/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pmoses/configure -------------------------------------------------------------------------------- /misc/pmoses/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pmoses/configure.ac -------------------------------------------------------------------------------- /misc/pmoses/pmoses.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pmoses/pmoses.cc -------------------------------------------------------------------------------- /misc/pruneGeneration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pruneGeneration.cpp -------------------------------------------------------------------------------- /misc/pruneGeneration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/pruneGeneration.h -------------------------------------------------------------------------------- /misc/prunePhraseTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/prunePhraseTable.cpp -------------------------------------------------------------------------------- /misc/queryPhraseTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/misc/queryPhraseTable.cpp -------------------------------------------------------------------------------- /moses-cmd/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses-cmd/Jamfile -------------------------------------------------------------------------------- /moses-cmd/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses-cmd/Main.cpp -------------------------------------------------------------------------------- /moses-cmd/MainVW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses-cmd/MainVW.cpp -------------------------------------------------------------------------------- /moses-cmd/MainVW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses-cmd/MainVW.h -------------------------------------------------------------------------------- /moses/AlignmentInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/AlignmentInfo.cpp -------------------------------------------------------------------------------- /moses/AlignmentInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/AlignmentInfo.h -------------------------------------------------------------------------------- /moses/BaseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/BaseManager.cpp -------------------------------------------------------------------------------- /moses/BaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/BaseManager.h -------------------------------------------------------------------------------- /moses/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Bitmap.cpp -------------------------------------------------------------------------------- /moses/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Bitmap.h -------------------------------------------------------------------------------- /moses/BitmapContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/BitmapContainer.cpp -------------------------------------------------------------------------------- /moses/BitmapContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/BitmapContainer.h -------------------------------------------------------------------------------- /moses/Bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Bitmaps.cpp -------------------------------------------------------------------------------- /moses/Bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Bitmaps.h -------------------------------------------------------------------------------- /moses/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/CMakeLists.txt -------------------------------------------------------------------------------- /moses/ChartCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartCell.cpp -------------------------------------------------------------------------------- /moses/ChartCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartCell.h -------------------------------------------------------------------------------- /moses/ChartCellLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartCellLabel.h -------------------------------------------------------------------------------- /moses/ChartCellLabelSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartCellLabelSet.h -------------------------------------------------------------------------------- /moses/ChartHypothesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartHypothesis.cpp -------------------------------------------------------------------------------- /moses/ChartHypothesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartHypothesis.h -------------------------------------------------------------------------------- /moses/ChartManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartManager.cpp -------------------------------------------------------------------------------- /moses/ChartManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartManager.h -------------------------------------------------------------------------------- /moses/ChartParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartParser.cpp -------------------------------------------------------------------------------- /moses/ChartParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ChartParser.h -------------------------------------------------------------------------------- /moses/ConfusionNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ConfusionNet.cpp -------------------------------------------------------------------------------- /moses/ConfusionNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ConfusionNet.h -------------------------------------------------------------------------------- /moses/ContextScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ContextScope.h -------------------------------------------------------------------------------- /moses/DecodeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/DecodeGraph.cpp -------------------------------------------------------------------------------- /moses/DecodeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/DecodeGraph.h -------------------------------------------------------------------------------- /moses/DecodeStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/DecodeStep.cpp -------------------------------------------------------------------------------- /moses/DecodeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/DecodeStep.h -------------------------------------------------------------------------------- /moses/ExportInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ExportInterface.cpp -------------------------------------------------------------------------------- /moses/ExportInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ExportInterface.h -------------------------------------------------------------------------------- /moses/FF/CountNonTerms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/CountNonTerms.h -------------------------------------------------------------------------------- /moses/FF/DecodeFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/DecodeFeature.h -------------------------------------------------------------------------------- /moses/FF/DeleteRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/DeleteRules.cpp -------------------------------------------------------------------------------- /moses/FF/DeleteRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/DeleteRules.h -------------------------------------------------------------------------------- /moses/FF/Diffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/Diffs.h -------------------------------------------------------------------------------- /moses/FF/EditOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/EditOps.cpp -------------------------------------------------------------------------------- /moses/FF/EditOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/EditOps.h -------------------------------------------------------------------------------- /moses/FF/FFState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/FFState.cpp -------------------------------------------------------------------------------- /moses/FF/FFState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/FFState.h -------------------------------------------------------------------------------- /moses/FF/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/Factory.cpp -------------------------------------------------------------------------------- /moses/FF/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/Factory.h -------------------------------------------------------------------------------- /moses/FF/InputFeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/InputFeature.cpp -------------------------------------------------------------------------------- /moses/FF/InputFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/InputFeature.h -------------------------------------------------------------------------------- /moses/FF/InternalTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/InternalTree.cpp -------------------------------------------------------------------------------- /moses/FF/InternalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/InternalTree.h -------------------------------------------------------------------------------- /moses/FF/Model1Feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/Model1Feature.h -------------------------------------------------------------------------------- /moses/FF/NieceTerminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/NieceTerminal.h -------------------------------------------------------------------------------- /moses/FF/PhrasePenalty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/PhrasePenalty.h -------------------------------------------------------------------------------- /moses/FF/RuleScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/RuleScope.cpp -------------------------------------------------------------------------------- /moses/FF/RuleScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/RuleScope.h -------------------------------------------------------------------------------- /moses/FF/SpanLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/SpanLength.cpp -------------------------------------------------------------------------------- /moses/FF/SpanLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/SpanLength.h -------------------------------------------------------------------------------- /moses/FF/SyntaxRHS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/SyntaxRHS.cpp -------------------------------------------------------------------------------- /moses/FF/SyntaxRHS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/SyntaxRHS.h -------------------------------------------------------------------------------- /moses/FF/VW/VW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/VW/VW.cpp -------------------------------------------------------------------------------- /moses/FF/VW/VW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/VW/VW.h -------------------------------------------------------------------------------- /moses/FF/VW/VWState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/VW/VWState.cpp -------------------------------------------------------------------------------- /moses/FF/VW/VWState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FF/VW/VWState.h -------------------------------------------------------------------------------- /moses/Factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Factor.cpp -------------------------------------------------------------------------------- /moses/Factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Factor.h -------------------------------------------------------------------------------- /moses/FactorCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FactorCollection.h -------------------------------------------------------------------------------- /moses/FactorTypeSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FactorTypeSet.cpp -------------------------------------------------------------------------------- /moses/FactorTypeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FactorTypeSet.h -------------------------------------------------------------------------------- /moses/FeatureVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FeatureVector.cpp -------------------------------------------------------------------------------- /moses/FeatureVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FeatureVector.h -------------------------------------------------------------------------------- /moses/File.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "File.h" 3 | 4 | 5 | -------------------------------------------------------------------------------- /moses/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/File.h -------------------------------------------------------------------------------- /moses/FilePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FilePtr.h -------------------------------------------------------------------------------- /moses/FloydWarshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FloydWarshall.cpp -------------------------------------------------------------------------------- /moses/FloydWarshall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/FloydWarshall.h -------------------------------------------------------------------------------- /moses/ForestInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ForestInput.cpp -------------------------------------------------------------------------------- /moses/ForestInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ForestInput.h -------------------------------------------------------------------------------- /moses/HypergraphOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/HypergraphOutput.h -------------------------------------------------------------------------------- /moses/HypoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/HypoList.h -------------------------------------------------------------------------------- /moses/Hypothesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Hypothesis.cpp -------------------------------------------------------------------------------- /moses/Hypothesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Hypothesis.h -------------------------------------------------------------------------------- /moses/HypothesisStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/HypothesisStack.cpp -------------------------------------------------------------------------------- /moses/HypothesisStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/HypothesisStack.h -------------------------------------------------------------------------------- /moses/IOWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/IOWrapper.cpp -------------------------------------------------------------------------------- /moses/IOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/IOWrapper.h -------------------------------------------------------------------------------- /moses/Incremental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Incremental.cpp -------------------------------------------------------------------------------- /moses/Incremental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Incremental.h -------------------------------------------------------------------------------- /moses/InputFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/InputFileStream.cpp -------------------------------------------------------------------------------- /moses/InputFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/InputFileStream.h -------------------------------------------------------------------------------- /moses/InputPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/InputPath.cpp -------------------------------------------------------------------------------- /moses/InputPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/InputPath.h -------------------------------------------------------------------------------- /moses/InputType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/InputType.cpp -------------------------------------------------------------------------------- /moses/InputType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/InputType.h -------------------------------------------------------------------------------- /moses/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Jamfile -------------------------------------------------------------------------------- /moses/LM/Backward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Backward.cpp -------------------------------------------------------------------------------- /moses/LM/Backward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Backward.h -------------------------------------------------------------------------------- /moses/LM/BackwardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/BackwardTest.cpp -------------------------------------------------------------------------------- /moses/LM/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Base.cpp -------------------------------------------------------------------------------- /moses/LM/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Base.h -------------------------------------------------------------------------------- /moses/LM/BilingualLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/BilingualLM.cpp -------------------------------------------------------------------------------- /moses/LM/BilingualLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/BilingualLM.h -------------------------------------------------------------------------------- /moses/LM/ChartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/ChartState.h -------------------------------------------------------------------------------- /moses/LM/DALMWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/DALMWrapper.cpp -------------------------------------------------------------------------------- /moses/LM/DALMWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/DALMWrapper.h -------------------------------------------------------------------------------- /moses/LM/ExampleLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/ExampleLM.cpp -------------------------------------------------------------------------------- /moses/LM/ExampleLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/ExampleLM.h -------------------------------------------------------------------------------- /moses/LM/IRST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/IRST.cpp -------------------------------------------------------------------------------- /moses/LM/IRST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/IRST.h -------------------------------------------------------------------------------- /moses/LM/Implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Implementation.h -------------------------------------------------------------------------------- /moses/LM/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Jamfile -------------------------------------------------------------------------------- /moses/LM/Ken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Ken.cpp -------------------------------------------------------------------------------- /moses/LM/Ken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Ken.h -------------------------------------------------------------------------------- /moses/LM/LDHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/LDHT.cpp -------------------------------------------------------------------------------- /moses/LM/LDHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/LDHT.h -------------------------------------------------------------------------------- /moses/LM/MaxEntSRI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/MaxEntSRI.cpp -------------------------------------------------------------------------------- /moses/LM/MaxEntSRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/MaxEntSRI.h -------------------------------------------------------------------------------- /moses/LM/MultiFactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/MultiFactor.cpp -------------------------------------------------------------------------------- /moses/LM/MultiFactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/MultiFactor.h -------------------------------------------------------------------------------- /moses/LM/PointerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/PointerState.h -------------------------------------------------------------------------------- /moses/LM/RDLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/RDLM.cpp -------------------------------------------------------------------------------- /moses/LM/RDLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/RDLM.h -------------------------------------------------------------------------------- /moses/LM/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Rand.cpp -------------------------------------------------------------------------------- /moses/LM/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Rand.h -------------------------------------------------------------------------------- /moses/LM/Reloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Reloading.cpp -------------------------------------------------------------------------------- /moses/LM/Reloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Reloading.h -------------------------------------------------------------------------------- /moses/LM/Remote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Remote.cpp -------------------------------------------------------------------------------- /moses/LM/Remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/Remote.h -------------------------------------------------------------------------------- /moses/LM/SRI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/SRI.cpp -------------------------------------------------------------------------------- /moses/LM/SRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/SRI.h -------------------------------------------------------------------------------- /moses/LM/SingleFactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/SingleFactor.cpp -------------------------------------------------------------------------------- /moses/LM/SingleFactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/SingleFactor.h -------------------------------------------------------------------------------- /moses/LM/backward.arpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/backward.arpa -------------------------------------------------------------------------------- /moses/LM/oxlm/OxLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/oxlm/OxLM.cpp -------------------------------------------------------------------------------- /moses/LM/oxlm/OxLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LM/oxlm/OxLM.h -------------------------------------------------------------------------------- /moses/LVoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LVoc.cpp -------------------------------------------------------------------------------- /moses/LVoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LVoc.h -------------------------------------------------------------------------------- /moses/LatticeMBR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LatticeMBR.cpp -------------------------------------------------------------------------------- /moses/LatticeMBR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/LatticeMBR.h -------------------------------------------------------------------------------- /moses/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Manager.cpp -------------------------------------------------------------------------------- /moses/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Manager.h -------------------------------------------------------------------------------- /moses/MockHypothesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/MockHypothesis.cpp -------------------------------------------------------------------------------- /moses/MockHypothesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/MockHypothesis.h -------------------------------------------------------------------------------- /moses/MosesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/MosesTest.cpp -------------------------------------------------------------------------------- /moses/NonTerminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/NonTerminal.cpp -------------------------------------------------------------------------------- /moses/NonTerminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/NonTerminal.h -------------------------------------------------------------------------------- /moses/ObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ObjectPool.h -------------------------------------------------------------------------------- /moses/OutputCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/OutputCollector.h -------------------------------------------------------------------------------- /moses/OutputFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/OutputFileStream.h -------------------------------------------------------------------------------- /moses/PCNTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PCNTools.cpp -------------------------------------------------------------------------------- /moses/PCNTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PCNTools.h -------------------------------------------------------------------------------- /moses/PDTAimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PDTAimp.cpp -------------------------------------------------------------------------------- /moses/PDTAimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PDTAimp.h -------------------------------------------------------------------------------- /moses/PP/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PP/Factory.cpp -------------------------------------------------------------------------------- /moses/PP/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PP/Factory.h -------------------------------------------------------------------------------- /moses/PP/PhraseProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PP/PhraseProperty.h -------------------------------------------------------------------------------- /moses/Parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Parameter.cpp -------------------------------------------------------------------------------- /moses/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Parameter.h -------------------------------------------------------------------------------- /moses/Phrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Phrase.cpp -------------------------------------------------------------------------------- /moses/Phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Phrase.h -------------------------------------------------------------------------------- /moses/PrefixTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PrefixTree.h -------------------------------------------------------------------------------- /moses/PrefixTreeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PrefixTreeMap.cpp -------------------------------------------------------------------------------- /moses/PrefixTreeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/PrefixTreeMap.h -------------------------------------------------------------------------------- /moses/Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Range.cpp -------------------------------------------------------------------------------- /moses/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Range.h -------------------------------------------------------------------------------- /moses/RuleCube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/RuleCube.cpp -------------------------------------------------------------------------------- /moses/RuleCube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/RuleCube.h -------------------------------------------------------------------------------- /moses/RuleCubeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/RuleCubeItem.cpp -------------------------------------------------------------------------------- /moses/RuleCubeItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/RuleCubeItem.h -------------------------------------------------------------------------------- /moses/RuleCubeQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/RuleCubeQueue.cpp -------------------------------------------------------------------------------- /moses/RuleCubeQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/RuleCubeQueue.h -------------------------------------------------------------------------------- /moses/Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Search.cpp -------------------------------------------------------------------------------- /moses/Search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Search.h -------------------------------------------------------------------------------- /moses/SearchCubePruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/SearchCubePruning.h -------------------------------------------------------------------------------- /moses/SearchNormal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/SearchNormal.cpp -------------------------------------------------------------------------------- /moses/SearchNormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/SearchNormal.h -------------------------------------------------------------------------------- /moses/Sentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Sentence.cpp -------------------------------------------------------------------------------- /moses/Sentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Sentence.h -------------------------------------------------------------------------------- /moses/SentenceStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/SentenceStats.cpp -------------------------------------------------------------------------------- /moses/SentenceStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/SentenceStats.h -------------------------------------------------------------------------------- /moses/SquareMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/SquareMatrix.cpp -------------------------------------------------------------------------------- /moses/SquareMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/SquareMatrix.h -------------------------------------------------------------------------------- /moses/StackVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/StackVec.h -------------------------------------------------------------------------------- /moses/StaticData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/StaticData.cpp -------------------------------------------------------------------------------- /moses/StaticData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/StaticData.h -------------------------------------------------------------------------------- /moses/Syntax/Cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/Cube.cpp -------------------------------------------------------------------------------- /moses/Syntax/Cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/Cube.h -------------------------------------------------------------------------------- /moses/Syntax/CubeQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/CubeQueue.h -------------------------------------------------------------------------------- /moses/Syntax/F2S/Forest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/F2S/Forest.h -------------------------------------------------------------------------------- /moses/Syntax/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/Manager.cpp -------------------------------------------------------------------------------- /moses/Syntax/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/Manager.h -------------------------------------------------------------------------------- /moses/Syntax/PHyperedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/PHyperedge.h -------------------------------------------------------------------------------- /moses/Syntax/PLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/PLabel.h -------------------------------------------------------------------------------- /moses/Syntax/PVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/PVertex.h -------------------------------------------------------------------------------- /moses/Syntax/RuleTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/RuleTable.h -------------------------------------------------------------------------------- /moses/Syntax/S2T/PChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/S2T/PChart.h -------------------------------------------------------------------------------- /moses/Syntax/S2T/SChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/S2T/SChart.h -------------------------------------------------------------------------------- /moses/Syntax/SHyperedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/SHyperedge.h -------------------------------------------------------------------------------- /moses/Syntax/SLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/SLabel.h -------------------------------------------------------------------------------- /moses/Syntax/SVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/SVertex.cpp -------------------------------------------------------------------------------- /moses/Syntax/SVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Syntax/SVertex.h -------------------------------------------------------------------------------- /moses/TabbedSentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TabbedSentence.cpp -------------------------------------------------------------------------------- /moses/TabbedSentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TabbedSentence.h -------------------------------------------------------------------------------- /moses/TargetPhrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TargetPhrase.cpp -------------------------------------------------------------------------------- /moses/TargetPhrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TargetPhrase.h -------------------------------------------------------------------------------- /moses/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Terminal.h -------------------------------------------------------------------------------- /moses/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ThreadPool.cpp -------------------------------------------------------------------------------- /moses/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/ThreadPool.h -------------------------------------------------------------------------------- /moses/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Timer.cpp -------------------------------------------------------------------------------- /moses/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Timer.h -------------------------------------------------------------------------------- /moses/TrainingTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TrainingTask.h -------------------------------------------------------------------------------- /moses/TranslationOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TranslationOption.h -------------------------------------------------------------------------------- /moses/TranslationTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TranslationTask.cpp -------------------------------------------------------------------------------- /moses/TranslationTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TranslationTask.h -------------------------------------------------------------------------------- /moses/TreeInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TreeInput.cpp -------------------------------------------------------------------------------- /moses/TreeInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TreeInput.h -------------------------------------------------------------------------------- /moses/TrellisPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TrellisPath.cpp -------------------------------------------------------------------------------- /moses/TrellisPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TrellisPath.h -------------------------------------------------------------------------------- /moses/TrellisPathList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TrellisPathList.h -------------------------------------------------------------------------------- /moses/TypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/TypeDef.h -------------------------------------------------------------------------------- /moses/UniqueObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/UniqueObject.h -------------------------------------------------------------------------------- /moses/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Util.cpp -------------------------------------------------------------------------------- /moses/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Util.h -------------------------------------------------------------------------------- /moses/Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Word.cpp -------------------------------------------------------------------------------- /moses/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/Word.h -------------------------------------------------------------------------------- /moses/WordLattice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/WordLattice.cpp -------------------------------------------------------------------------------- /moses/WordLattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/WordLattice.h -------------------------------------------------------------------------------- /moses/WordsBitmapTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/WordsBitmapTest.cpp -------------------------------------------------------------------------------- /moses/XmlOption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/XmlOption.cpp -------------------------------------------------------------------------------- /moses/XmlOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/XmlOption.h -------------------------------------------------------------------------------- /moses/gzfilebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/gzfilebuf.h -------------------------------------------------------------------------------- /moses/hypergraph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/hypergraph.proto -------------------------------------------------------------------------------- /moses/mbr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/mbr.cpp -------------------------------------------------------------------------------- /moses/mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/mbr.h -------------------------------------------------------------------------------- /moses/rule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/rule.proto -------------------------------------------------------------------------------- /moses/server/Optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/Optimizer.h -------------------------------------------------------------------------------- /moses/server/PackScores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/PackScores.h -------------------------------------------------------------------------------- /moses/server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/Server.cpp -------------------------------------------------------------------------------- /moses/server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/Server.h -------------------------------------------------------------------------------- /moses/server/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/Session.h -------------------------------------------------------------------------------- /moses/server/Translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/Translator.h -------------------------------------------------------------------------------- /moses/server/Updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/Updater.cpp -------------------------------------------------------------------------------- /moses/server/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/server/Updater.h -------------------------------------------------------------------------------- /moses/xmlrpc-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses/xmlrpc-c.h -------------------------------------------------------------------------------- /moses2/AlignmentInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/AlignmentInfo.cpp -------------------------------------------------------------------------------- /moses2/AlignmentInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/AlignmentInfo.h -------------------------------------------------------------------------------- /moses2/ArcLists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/ArcLists.cpp -------------------------------------------------------------------------------- /moses2/ArcLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/ArcLists.h -------------------------------------------------------------------------------- /moses2/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Array.h -------------------------------------------------------------------------------- /moses2/DLLEntryApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/DLLEntryApi.cpp -------------------------------------------------------------------------------- /moses2/EstimatedScores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/EstimatedScores.h -------------------------------------------------------------------------------- /moses2/FF/Distortion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/Distortion.cpp -------------------------------------------------------------------------------- /moses2/FF/Distortion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/Distortion.h -------------------------------------------------------------------------------- /moses2/FF/FFState.cpp: -------------------------------------------------------------------------------- 1 | #include "FFState.h" 2 | -------------------------------------------------------------------------------- /moses2/FF/FFState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/FFState.h -------------------------------------------------------------------------------- /moses2/FF/OSM/KenOSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/OSM/KenOSM.cpp -------------------------------------------------------------------------------- /moses2/FF/OSM/KenOSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/OSM/KenOSM.h -------------------------------------------------------------------------------- /moses2/FF/OSM/osmHyp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/OSM/osmHyp.cpp -------------------------------------------------------------------------------- /moses2/FF/OSM/osmHyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/OSM/osmHyp.h -------------------------------------------------------------------------------- /moses2/FF/PhrasePenalty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/PhrasePenalty.h -------------------------------------------------------------------------------- /moses2/FF/PointerState.cpp: -------------------------------------------------------------------------------- 1 | #include "PointerState.h" 2 | 3 | namespace Moses2 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /moses2/FF/PointerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/PointerState.h -------------------------------------------------------------------------------- /moses2/FF/WordPenalty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/WordPenalty.cpp -------------------------------------------------------------------------------- /moses2/FF/WordPenalty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/FF/WordPenalty.h -------------------------------------------------------------------------------- /moses2/HypothesisBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/HypothesisBase.cpp -------------------------------------------------------------------------------- /moses2/HypothesisBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/HypothesisBase.h -------------------------------------------------------------------------------- /moses2/HypothesisColl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/HypothesisColl.cpp -------------------------------------------------------------------------------- /moses2/HypothesisColl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/HypothesisColl.h -------------------------------------------------------------------------------- /moses2/InputPathBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/InputPathBase.cpp -------------------------------------------------------------------------------- /moses2/InputPathBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/InputPathBase.h -------------------------------------------------------------------------------- /moses2/InputPathsBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/InputPathsBase.cpp -------------------------------------------------------------------------------- /moses2/InputPathsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/InputPathsBase.h -------------------------------------------------------------------------------- /moses2/InputType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/InputType.cpp -------------------------------------------------------------------------------- /moses2/InputType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/InputType.h -------------------------------------------------------------------------------- /moses2/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Jamfile -------------------------------------------------------------------------------- /moses2/LM/GPULM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/LM/GPULM.cpp -------------------------------------------------------------------------------- /moses2/LM/GPULM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/LM/GPULM.h -------------------------------------------------------------------------------- /moses2/LM/KENLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/LM/KENLM.cpp -------------------------------------------------------------------------------- /moses2/LM/KENLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/LM/KENLM.h -------------------------------------------------------------------------------- /moses2/LM/KENLMBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/LM/KENLMBatch.cpp -------------------------------------------------------------------------------- /moses2/LM/KENLMBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/LM/KENLMBatch.h -------------------------------------------------------------------------------- /moses2/LM/LanguageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/LM/LanguageModel.h -------------------------------------------------------------------------------- /moses2/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Main.cpp -------------------------------------------------------------------------------- /moses2/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Main.h -------------------------------------------------------------------------------- /moses2/ManagerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/ManagerBase.cpp -------------------------------------------------------------------------------- /moses2/ManagerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/ManagerBase.h -------------------------------------------------------------------------------- /moses2/MemPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/MemPool.cpp -------------------------------------------------------------------------------- /moses2/MemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/MemPool.h -------------------------------------------------------------------------------- /moses2/MemPoolAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/MemPoolAllocator.h -------------------------------------------------------------------------------- /moses2/Moses2Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Moses2Wrapper.cpp -------------------------------------------------------------------------------- /moses2/Moses2Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Moses2Wrapper.h -------------------------------------------------------------------------------- /moses2/Phrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Phrase.cpp -------------------------------------------------------------------------------- /moses2/Phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Phrase.h -------------------------------------------------------------------------------- /moses2/Recycler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Recycler.cpp -------------------------------------------------------------------------------- /moses2/Recycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Recycler.h -------------------------------------------------------------------------------- /moses2/SCFG/ActiveChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/ActiveChart.h -------------------------------------------------------------------------------- /moses2/SCFG/Hypothesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Hypothesis.h -------------------------------------------------------------------------------- /moses2/SCFG/InputPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/InputPath.cpp -------------------------------------------------------------------------------- /moses2/SCFG/InputPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/InputPath.h -------------------------------------------------------------------------------- /moses2/SCFG/InputPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/InputPaths.h -------------------------------------------------------------------------------- /moses2/SCFG/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Manager.cpp -------------------------------------------------------------------------------- /moses2/SCFG/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Manager.h -------------------------------------------------------------------------------- /moses2/SCFG/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Misc.cpp -------------------------------------------------------------------------------- /moses2/SCFG/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Misc.h -------------------------------------------------------------------------------- /moses2/SCFG/PhraseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/PhraseImpl.h -------------------------------------------------------------------------------- /moses2/SCFG/Sentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Sentence.cpp -------------------------------------------------------------------------------- /moses2/SCFG/Sentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Sentence.h -------------------------------------------------------------------------------- /moses2/SCFG/Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Stack.cpp -------------------------------------------------------------------------------- /moses2/SCFG/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Stack.h -------------------------------------------------------------------------------- /moses2/SCFG/Stacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Stacks.cpp -------------------------------------------------------------------------------- /moses2/SCFG/Stacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Stacks.h -------------------------------------------------------------------------------- /moses2/SCFG/Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Word.cpp -------------------------------------------------------------------------------- /moses2/SCFG/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/Word.h -------------------------------------------------------------------------------- /moses2/SCFG/nbest/NBest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SCFG/nbest/NBest.h -------------------------------------------------------------------------------- /moses2/Scores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Scores.cpp -------------------------------------------------------------------------------- /moses2/Scores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Scores.h -------------------------------------------------------------------------------- /moses2/SubPhrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SubPhrase.cpp -------------------------------------------------------------------------------- /moses2/SubPhrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/SubPhrase.h -------------------------------------------------------------------------------- /moses2/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/System.cpp -------------------------------------------------------------------------------- /moses2/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/System.h -------------------------------------------------------------------------------- /moses2/TargetPhrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/TargetPhrase.cpp -------------------------------------------------------------------------------- /moses2/TargetPhrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/TargetPhrase.h -------------------------------------------------------------------------------- /moses2/TranslationTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/TranslationTask.h -------------------------------------------------------------------------------- /moses2/TrellisPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/TrellisPaths.cpp -------------------------------------------------------------------------------- /moses2/TrellisPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/TrellisPaths.h -------------------------------------------------------------------------------- /moses2/TypeDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/TypeDef.cpp -------------------------------------------------------------------------------- /moses2/TypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/TypeDef.h -------------------------------------------------------------------------------- /moses2/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Vector.cpp -------------------------------------------------------------------------------- /moses2/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Vector.h -------------------------------------------------------------------------------- /moses2/Weights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Weights.cpp -------------------------------------------------------------------------------- /moses2/Weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Weights.h -------------------------------------------------------------------------------- /moses2/Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Word.cpp -------------------------------------------------------------------------------- /moses2/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/Word.h -------------------------------------------------------------------------------- /moses2/legacy/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Bitmap.cpp -------------------------------------------------------------------------------- /moses2/legacy/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Bitmap.h -------------------------------------------------------------------------------- /moses2/legacy/Bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Bitmaps.cpp -------------------------------------------------------------------------------- /moses2/legacy/Bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Bitmaps.h -------------------------------------------------------------------------------- /moses2/legacy/Factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Factor.cpp -------------------------------------------------------------------------------- /moses2/legacy/Factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Factor.h -------------------------------------------------------------------------------- /moses2/legacy/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Matrix.cpp -------------------------------------------------------------------------------- /moses2/legacy/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Matrix.h -------------------------------------------------------------------------------- /moses2/legacy/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Parameter.h -------------------------------------------------------------------------------- /moses2/legacy/Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Range.cpp -------------------------------------------------------------------------------- /moses2/legacy/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Range.h -------------------------------------------------------------------------------- /moses2/legacy/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Timer.cpp -------------------------------------------------------------------------------- /moses2/legacy/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Timer.h -------------------------------------------------------------------------------- /moses2/legacy/Util2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Util2.cpp -------------------------------------------------------------------------------- /moses2/legacy/Util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/Util2.h -------------------------------------------------------------------------------- /moses2/legacy/gzfilebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/gzfilebuf.h -------------------------------------------------------------------------------- /moses2/legacy/xmlrpc-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/legacy/xmlrpc-c.h -------------------------------------------------------------------------------- /moses2/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/pugiconfig.hpp -------------------------------------------------------------------------------- /moses2/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/pugixml.cpp -------------------------------------------------------------------------------- /moses2/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/pugixml.hpp -------------------------------------------------------------------------------- /moses2/server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/server/Server.cpp -------------------------------------------------------------------------------- /moses2/server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/moses2/server/Server.h -------------------------------------------------------------------------------- /phrase-extract/Hole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/phrase-extract/Hole.h -------------------------------------------------------------------------------- /phrase-extract/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/phrase-extract/Jamfile -------------------------------------------------------------------------------- /phrase-extract/XmlTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/phrase-extract/XmlTree.h -------------------------------------------------------------------------------- /phrase-extract/extract-mixed-syntax/Property.cpp: -------------------------------------------------------------------------------- 1 | #include "Property.h" 2 | 3 | -------------------------------------------------------------------------------- /phrase-extract/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/phrase-extract/score.h -------------------------------------------------------------------------------- /phrase-extract/test.domain: -------------------------------------------------------------------------------- 1 | 1 a 2 | 3 c 3 | -------------------------------------------------------------------------------- /probingpt/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/Jamfile -------------------------------------------------------------------------------- /probingpt/StoreTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/StoreTarget.cpp -------------------------------------------------------------------------------- /probingpt/StoreTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/StoreTarget.h -------------------------------------------------------------------------------- /probingpt/StoreVocab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/StoreVocab.cpp -------------------------------------------------------------------------------- /probingpt/StoreVocab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/StoreVocab.h -------------------------------------------------------------------------------- /probingpt/gzfilebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/gzfilebuf.h -------------------------------------------------------------------------------- /probingpt/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/hash.cpp -------------------------------------------------------------------------------- /probingpt/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/hash.h -------------------------------------------------------------------------------- /probingpt/line_splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/line_splitter.h -------------------------------------------------------------------------------- /probingpt/querying.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/querying.cpp -------------------------------------------------------------------------------- /probingpt/querying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/querying.h -------------------------------------------------------------------------------- /probingpt/storing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/storing.cpp -------------------------------------------------------------------------------- /probingpt/storing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/storing.h -------------------------------------------------------------------------------- /probingpt/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/util.cpp -------------------------------------------------------------------------------- /probingpt/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/util.h -------------------------------------------------------------------------------- /probingpt/vocabid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/vocabid.cpp -------------------------------------------------------------------------------- /probingpt/vocabid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/probingpt/vocabid.h -------------------------------------------------------------------------------- /run-regtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/run-regtests.sh -------------------------------------------------------------------------------- /scripts/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/scripts/Jamfile -------------------------------------------------------------------------------- /scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/scripts/README -------------------------------------------------------------------------------- /scripts/analysis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/scripts/analysis/README -------------------------------------------------------------------------------- /scripts/analysis/oov.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/scripts/analysis/oov.pl -------------------------------------------------------------------------------- /scripts/ems/web/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/scripts/ems/web/setup -------------------------------------------------------------------------------- /scripts/regression-testing/tests/mert-moses-new-continue/data/actual.index: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /scripts/regression-testing/tests/mert-moses-new-continue/data/finished_step.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /scripts/share/nonbreaking_prefixes/nonbreaking_prefix.et: -------------------------------------------------------------------------------- 1 | nonbreaking_prefix.fi -------------------------------------------------------------------------------- /scripts/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/scripts/tests/README -------------------------------------------------------------------------------- /scripts/training/Jamfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/training/clean-corpus-n-ratio.perl: -------------------------------------------------------------------------------- 1 | clean-corpus-n.perl -------------------------------------------------------------------------------- /search/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/Jamfile -------------------------------------------------------------------------------- /search/applied.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/applied.hh -------------------------------------------------------------------------------- /search/config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/config.hh -------------------------------------------------------------------------------- /search/context.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/context.hh -------------------------------------------------------------------------------- /search/edge.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/edge.hh -------------------------------------------------------------------------------- /search/header.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/header.hh -------------------------------------------------------------------------------- /search/nbest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/nbest.cc -------------------------------------------------------------------------------- /search/nbest.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/nbest.hh -------------------------------------------------------------------------------- /search/rule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/rule.cc -------------------------------------------------------------------------------- /search/rule.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/rule.hh -------------------------------------------------------------------------------- /search/types.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/types.hh -------------------------------------------------------------------------------- /search/vertex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/vertex.cc -------------------------------------------------------------------------------- /search/vertex.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/search/vertex.hh -------------------------------------------------------------------------------- /symal/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/symal/Jamfile -------------------------------------------------------------------------------- /symal/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/symal/cmd.c -------------------------------------------------------------------------------- /symal/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/symal/cmd.h -------------------------------------------------------------------------------- /symal/symal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/symal/symal.cpp -------------------------------------------------------------------------------- /symal/symal.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/symal/symal.vcproj -------------------------------------------------------------------------------- /util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/CMakeLists.txt -------------------------------------------------------------------------------- /util/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/Jamfile -------------------------------------------------------------------------------- /util/bit_packing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/bit_packing.cc -------------------------------------------------------------------------------- /util/bit_packing.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/bit_packing.hh -------------------------------------------------------------------------------- /util/exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/exception.cc -------------------------------------------------------------------------------- /util/exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/exception.hh -------------------------------------------------------------------------------- /util/fake_ostream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/fake_ostream.hh -------------------------------------------------------------------------------- /util/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/file.cc -------------------------------------------------------------------------------- /util/file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/file.hh -------------------------------------------------------------------------------- /util/file_piece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/file_piece.cc -------------------------------------------------------------------------------- /util/file_piece.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/file_piece.hh -------------------------------------------------------------------------------- /util/file_stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/file_stream.hh -------------------------------------------------------------------------------- /util/fixed_array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/fixed_array.hh -------------------------------------------------------------------------------- /util/generator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/generator.hh -------------------------------------------------------------------------------- /util/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/getopt.c -------------------------------------------------------------------------------- /util/getopt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/getopt.hh -------------------------------------------------------------------------------- /util/have.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/have.hh -------------------------------------------------------------------------------- /util/joint_sort.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/joint_sort.hh -------------------------------------------------------------------------------- /util/mmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/mmap.cc -------------------------------------------------------------------------------- /util/mmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/mmap.hh -------------------------------------------------------------------------------- /util/murmur_hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/murmur_hash.cc -------------------------------------------------------------------------------- /util/murmur_hash.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/murmur_hash.hh -------------------------------------------------------------------------------- /util/parallel_read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/parallel_read.cc -------------------------------------------------------------------------------- /util/parallel_read.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/parallel_read.hh -------------------------------------------------------------------------------- /util/pcqueue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/pcqueue.hh -------------------------------------------------------------------------------- /util/pcqueue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/pcqueue_test.cc -------------------------------------------------------------------------------- /util/pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/pool.cc -------------------------------------------------------------------------------- /util/pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/pool.hh -------------------------------------------------------------------------------- /util/proxy_iterator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/proxy_iterator.hh -------------------------------------------------------------------------------- /util/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/random.cc -------------------------------------------------------------------------------- /util/random.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/random.hh -------------------------------------------------------------------------------- /util/random_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/random_test.cc -------------------------------------------------------------------------------- /util/scoped.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/scoped.cc -------------------------------------------------------------------------------- /util/scoped.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/scoped.hh -------------------------------------------------------------------------------- /util/sized_iterator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/sized_iterator.hh -------------------------------------------------------------------------------- /util/sorted_uniform.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/sorted_uniform.hh -------------------------------------------------------------------------------- /util/stream/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/Jamfile -------------------------------------------------------------------------------- /util/stream/block.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/block.hh -------------------------------------------------------------------------------- /util/stream/chain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/chain.cc -------------------------------------------------------------------------------- /util/stream/chain.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/chain.hh -------------------------------------------------------------------------------- /util/stream/config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/config.hh -------------------------------------------------------------------------------- /util/stream/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/io.cc -------------------------------------------------------------------------------- /util/stream/io.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/io.hh -------------------------------------------------------------------------------- /util/stream/io_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/io_test.cc -------------------------------------------------------------------------------- /util/stream/sort.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/sort.hh -------------------------------------------------------------------------------- /util/stream/stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/stream.hh -------------------------------------------------------------------------------- /util/stream/timer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/stream/timer.hh -------------------------------------------------------------------------------- /util/string_piece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/string_piece.cc -------------------------------------------------------------------------------- /util/string_piece.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/string_piece.hh -------------------------------------------------------------------------------- /util/string_stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/string_stream.hh -------------------------------------------------------------------------------- /util/tempfile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/tempfile.hh -------------------------------------------------------------------------------- /util/tempfile_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/tempfile_test.cc -------------------------------------------------------------------------------- /util/thread_pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/thread_pool.hh -------------------------------------------------------------------------------- /util/tokenize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/tokenize.hh -------------------------------------------------------------------------------- /util/tokenize_piece.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/tokenize_piece.hh -------------------------------------------------------------------------------- /util/tokenize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/tokenize_test.cc -------------------------------------------------------------------------------- /util/usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/usage.cc -------------------------------------------------------------------------------- /util/usage.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/util/usage.hh -------------------------------------------------------------------------------- /vw/Classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/vw/Classifier.h -------------------------------------------------------------------------------- /vw/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/vw/Jamfile -------------------------------------------------------------------------------- /vw/Normalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/vw/Normalizer.h -------------------------------------------------------------------------------- /vw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/vw/README.md -------------------------------------------------------------------------------- /vw/VWPredictor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/vw/VWPredictor.cpp -------------------------------------------------------------------------------- /vw/VWTrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-smt/mosesdecoder/HEAD/vw/VWTrainer.cpp --------------------------------------------------------------------------------