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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-05-31move all executables into binHieu Hoang
2012-05-30xcode build supports threads. move 'using namespace' out from .h file to ↵Hieu Hoang
stop namespace pollution
2012-05-28eclipse projectHieu Hoang
2012-05-17Check factor is not null before outputtingHieu Hoang
2012-04-19Add phrase segmentation information to n-best listJonathan Clark
2012-03-30Fixed memory leak for single-threaded mode.Lane Schwartz
2012-01-31Use make_pair without typeMichal Hrusecky
Replacing typed make_pair with non-typed version to fix compilation issues.
2012-01-13Surround mains in try-catch blocks.Kenneth Heafield
2011-12-02move vs and xcode project files into separate contrib folderHieu Hoang
2011-12-01Merge CreateOnDisk into OnDiskPt, pop out of srcKenneth Heafield
2011-12-01No more autotools (with bhaddow in the room)Kenneth Heafield
2011-11-23move checkplfBarry Haddow
2011-11-21Jam: install executables in legacy paths and stop leaving a.out files everywhereKenneth Heafield
2011-11-21Remove GetTargetPhrase() (already have GetCurrTargetPhrase())Barry Haddow
2011-11-21Further direction removalBarry Haddow
2011-11-21Remove direction from PhraseBarry Haddow
2011-11-18Merge branch 'master' of github.com:moses-smt/mosesdecoderHieu Hoang
2011-11-18xcodeHieu Hoang
2011-11-18Introducing JamfilesKenneth Heafield
Currently supports kenlm, irstlm, and srilm options. bjam [--with-srilm=/path/to/sri] [--with-irstlm=/path/to/irst] -j8 Places binaries in dist/ that pass regression tests.
2011-11-18xcodeHieu Hoang
2011-11-18One more assertKenneth Heafield
2011-11-18Replace assert with CHECK until people learn how to use assert properlyKenneth Heafield
2011-11-18Why are these executable?Kenneth Heafield
2011-11-17Move kenlm up one level, simplify compilationKenneth Heafield
2011-11-13load hiero format for reading suffix arraysHieu Hoang
2011-11-12Merge branch 'master' of github.com:moses-smt/mosesdecoderHieu Hoang
2011-11-12visual studioHieu Hoang
2011-11-11xcode buildHieu Hoang
2011-10-30xcodeHieu Hoang
2011-10-30Revert "xcode"Hieu Hoang
This reverts commit c6b333a832562d5f300736f74a0f1f3225a78b40.
2011-10-29xcodeHieu Hoang
2011-10-23win32Hieu Hoang
2011-10-14visual studiohieuhoang1972
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4356 1f5c12ca-751b-0410-a591-d2e778427230
2011-10-04Implementation of Lattice sampling (Chatterjee and Cancedda, emnlp 2010)bhaddow
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4295 1f5c12ca-751b-0410-a591-d2e778427230
2011-10-03normalization of output spaces before and after field separatornicolabertoldi
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4293 1f5c12ca-751b-0410-a591-d2e778427230
2011-09-25xcodehieuhoang1972
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4264 1f5c12ca-751b-0410-a591-d2e778427230
2011-09-23-threads all optionheafield
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4252 1f5c12ca-751b-0410-a591-d2e778427230
2011-09-02recovered missing blank in n-best-list outputarianna_b
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4170 1f5c12ca-751b-0410-a591-d2e778427230
2011-08-30change to print the corrett name of the features with InputScoresnicolabertoldi
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4168 1f5c12ca-751b-0410-a591-d2e778427230
2011-08-26option to sort word alignment info, as suggested by arianna bisazzahieuhoang1972
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4164 1f5c12ca-751b-0410-a591-d2e778427230
2011-07-24vs.net buildhieuhoang1972
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4088 1f5c12ca-751b-0410-a591-d2e778427230
2011-07-19visual studio 2010hieuhoang1972
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4079 1f5c12ca-751b-0410-a591-d2e778427230
2011-04-17Fix a segmentation fault produced when both 'constraint' andnaditomeh
'translation-details' are used, and no hypothesis that matches the reference translation is found. The problem resulted from a missing check if a vector is empty before incrementing its iterator. git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3950 1f5c12ca-751b-0410-a591-d2e778427230
2011-03-02added some commentsphkoehn
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3911 1f5c12ca-751b-0410-a591-d2e778427230
2011-02-28Memory efficiency: make the reserveSize argument non-optional inpjwilliams
Moses::Phrase's constructor. The default used to be ARRAY_SIZE_INCR = 10, which will be excessive in many cases. Where the default was used, I've set the exact size where that was obvious and explicitly used ARRAY_SIZE_INCR otherwise. If you know the code involved, it's probably worth reviewing. git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3908 1f5c12ca-751b-0410-a591-d2e778427230
2011-02-24run beautify.perl. Consistent formatting for .h & .cpp fileshieuhoang1972
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3897 1f5c12ca-751b-0410-a591-d2e778427230
2011-02-23extensions to phrase table scoring optionsphkoehn
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3893 1f5c12ca-751b-0410-a591-d2e778427230
2011-02-16Write alignment info through OutputCollector so it gets orderedbhaddow
correctly when run with multiple threads. git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3882 1f5c12ca-751b-0410-a591-d2e778427230
2011-02-08Word alignment output also works with MBR decoding.ales-t
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3875 1f5c12ca-751b-0410-a591-d2e778427230
2011-02-03Ales Tamchyna's printing of alignments (-print-alignment-info did nothing)bojar
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3867 1f5c12ca-751b-0410-a591-d2e778427230