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
2016-03-22BUGFIX: fix ScoreComponentCollection::ZeroAll(), affecting MIRADavid Madl
I observed a bug that ScoreComponentCollection core entries would retain their score even after ZeroAll(). This may have affected the Moses implementation of MIRA. * std::valarray::resize(0) means "resize to 0" [1] * subsequent accesses using operator[] result in undefined behavior [2] FeatureVector::clear() is used by ScoreComponentCollection::ZeroAll(), which in turn was used in these places: ./contrib/mira/Main.cpp:665: cumulativeWeights.ZeroAll(); ./contrib/mira/Main.cpp:666: cumulativeWeightsBinary.ZeroAll(); ./moses/Incremental.cpp:580: features.ZeroAll(); It seems to me that the Moses implementation of MIRA may have been affected? [1] http://www.cplusplus.com/reference/valarray/valarray/resize/ [2] http://www.cplusplus.com/reference/valarray/valarray/operator%5B%5D/
2015-10-16make util::StringStream more like std::stringstreamHieu Hoang
2015-10-16use util::StringStreamHieu Hoang
2015-09-26streamlining license to LGPL 2.1Philipp Koehn
2015-01-07score deltas in chart decodingMatthias Huck
2014-08-08Fix output of sparse features in hypergraphBarry Haddow
2014-08-06Sparse features trainable with hg miraBarry Haddow
(In phrase-based Moses)
2014-01-15merged upstream with origin for mingwjiejiang
2013-12-19moses windows build, with some TODO listjiejiang
2013-11-19replace CHECK with UTIL_THROW_IF in MosesHieu Hoang
2013-05-31beautifyHieu Hoang
2013-05-31figure out which feature function to apply at which decode step. Book-keepingHieu Hoang
2013-05-30function to merge feature scores. ie. not add them together.Hieu Hoang
2013-05-29beautifyHieu Hoang
2013-05-12fixed potential bug. Function returns reference to local variable. /Thomas ↵Hieu Hoang
Schoenemann
2013-04-25Back FactorCollection with a memory pool. Less memory for large vocabularies.Kenneth Heafield
2012-11-12move moses/src/* to moses/Hieu Hoang