Commit Graph

5557 Commits

Author SHA1 Message Date
msalameh83
f23beaa27d deseg initial commit 2016-04-01 11:16:03 -06:00
Hieu Hoang
556a51b5d2 Merge ../mosesdecoder into perf_moses2 2016-04-01 11:11:39 +01:00
Hieu Hoang
3e2c51095c guard 2016-04-01 10:25:21 +01:00
Hieu Hoang
ff8caa1226 Merge ../mosesdecoder into perf_moses2 2016-03-28 23:58:20 +01:00
Hieu Hoang
b8bc4a9fb6 use max_partial_trans_opt, not m_max_phrase_length 2016-03-28 23:58:06 +01:00
Ales Tamchyna
4f85b605c9 bilingual features for VW 2016-03-24 18:09:07 +01:00
Lane Schwartz
923532982d Merge branch 'master' of github.com:moses-smt/mosesdecoder 2016-03-24 10:34:27 -05:00
Ales Tamchyna
2536352875 towards using aligned source words in context features 2016-03-24 15:07:48 +01:00
Hieu Hoang
9a560a3d0f recreate lex ro framework from Moses 2016-03-24 13:46:52 +00:00
Kenneth Heafield
31698d5eca Remove deprecated lazyken=0 settings. Should be load instead, but don't specify if it's the default. 2016-03-24 12:58:10 +00:00
Ales Tamchyna
4f807c47c8 implementing VWContextBilingual 2016-03-24 12:58:20 +01:00
Ales Tamchyna
90a3650b42 minor 2016-03-24 12:45:35 +01:00
MosesAdmin
ab2be02eef daily automatic beautifier 2016-03-24 00:00:47 +00:00
Kenneth Heafield
8a083bc921 Missing #include <set> (which BTW probably shouldn't be used) 2016-03-23 22:46:54 +00:00
Kenneth Heafield
49165a370b Pull out my config structure, still need it to go outside the ConstructOSMLM function 2016-03-23 22:15:14 +00:00
Lane Schwartz
d45b357e11 Merge branch 'master' of github.com:moses-smt/mosesdecoder 2016-03-23 17:03:31 -05:00
Kenneth Heafield
0665cb46e5 Chart decoding is supported by UTIL_THROW2, but not by OpSequenceModel 2016-03-23 21:31:47 +00:00
Kenneth Heafield
90b772734c Delete unnecessary virtual 2016-03-23 21:28:55 +00:00
Ales Tamchyna
073f9c5656 bugfix in context hash 2016-03-23 17:37:19 +01:00
Ales Tamchyna
c7a1d21abd refactoring VW state class 2016-03-23 16:45:53 +01:00
Lane Schwartz
167def1d52 Merge branch 'master' of github.com:moses-smt/mosesdecoder 2016-03-23 10:26:07 -05:00
Lane Schwartz
8893524339 Fixed bug 2016-03-23 10:25:57 -05:00
Hieu Hoang
356de67a6d Merge ../mosesdecoder into perf_moses2 2016-03-23 15:18:39 +00:00
Hieu Hoang
51300fd897 merge 2016-03-23 15:18:37 +00:00
Hieu Hoang
4c07496eb2 compile error with suffix array 2016-03-23 15:18:20 +00:00
Hieu Hoang
dccaa63b31 rename LexicalReorderingState.h -> LRState.h 2016-03-23 14:37:26 +00:00
Hieu Hoang
fa02a99f13 separate LRModel into its own file 2016-03-23 14:29:32 +00:00
Hieu Hoang
105faa5673 separate BidirectionalReorderingState into its own file 2016-03-23 13:57:25 +00:00
Ales Tamchyna
01301ac816 removing unused variables 2016-03-23 14:16:11 +01:00
Ales Tamchyna
f6f506e814 clarification 2016-03-23 14:10:25 +01:00
Ales Tamchyna
47e1ffc108 more comments 2016-03-23 14:05:29 +01:00
Ales Tamchyna
f85952c47c some comments 2016-03-23 13:36:54 +01:00
Ales Tamchyna
e6b00a0c22 re-factoring VW integration 2016-03-23 13:32:28 +01:00
Ales Tamchyna
acf7d7eedd update VW context feature interface 2016-03-23 12:38:57 +01:00
Hieu Hoang
ba9a9b3ef9 separate PhraseBasedReorderingState into its own file 2016-03-23 10:48:16 +00:00
Hieu Hoang
be20f2c149 separate HReorderingBackwardState into its own file 2016-03-23 10:43:55 +00:00
Hieu Hoang
46a94f2258 separate HReorderingForwardState into its own file 2016-03-23 10:38:42 +00:00
Hieu Hoang
3fe5574a95 compiles 2016-03-22 17:51:39 +00:00
Ales Tamchyna
73c0a86445 minor 2016-03-22 16:08:57 +01:00
Ales Tamchyna
c7222841d7 Merge branch 'master' of github.com:moses-smt/mosesdecoder into vw_tgtcontext 2016-03-22 15:42:43 +01:00
Ales Tamchyna
a7e33755f9 optimizations 2016-03-22 15:11:41 +01:00
Hieu Hoang
95f252aa37 Merge ../mosesdecoder into perf_moses2 2016-03-22 10:20:21 +00:00
David Madl
b760ad8a7e BUGFIX: fix ScoreComponentCollection::ZeroAll(), affecting MIRA
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/
2016-03-22 10:37:30 +01:00
Michael Denkowski
fa15d60afd Revert "Query member phrase tables in batch mode for forward compatibility"
This reverts commit 2462c81f7a.

Looks like legacy is still the least-breaking way to query phrase tables
2016-03-21 16:44:23 -04:00
Michael Denkowski
2a9034eaec Revert "daily automatic beautifier"
This reverts commit 578d667ca2.
2016-03-21 16:41:49 -04:00
Ales Tamchyna
75676a8435 Merge branch 'master' of github.com:moses-smt/mosesdecoder into vw_tgtcontext 2016-03-21 13:49:36 +01:00
MosesAdmin
578d667ca2 daily automatic beautifier 2016-03-19 00:00:38 +00:00
Michael Denkowski
2462c81f7a Query member phrase tables in batch mode for forward compatibility
Use GetTargetPhraseCollectionBatch instead of GetTargetPhraseCollectionLEGACY
2016-03-18 14:37:46 -04:00
MosesAdmin
e7627e04ed daily automatic beautifier 2016-03-18 00:00:58 +00:00
Matthias Huck
bbf8a615f2 Sparse distortion features
in the manner of:

Spence Green, Michel Galley, Christopher D. Manning. 2010.  Improved
Models of Distortion Cost for Statistical Machine Translation. In NAACL
2010.
2016-03-17 16:10:49 +00:00
Hieu Hoang
f96b48a041 Merge ../mosesdecoder into perf_moses2 2016-03-11 16:38:38 +00:00
Ales Tamchyna
3e5c0e8667 minor 2016-03-10 14:01:47 +01:00
Ales Tamchyna
d972d50b79 optimizing VW queries by caching 2016-03-10 13:41:56 +01:00
Ales Tamchyna
6b579c2156 VW feature functions now also output extracted features for caching 2016-03-09 19:27:24 +01:00
Ales Tamchyna
1007b376b2 return feature ids when adding features 2016-03-09 18:52:07 +01:00
Ales Tamchyna
4486c8ec43 important bug fix in target-side VW, adding optional debugging messages 2016-03-08 14:42:45 +01:00
Jeroen
ae5ad8a49e Detect write errors in LVoc.
Write failures in LVoc::Write() were going unnoticed.  If disk space
runs out, the output file might get truncated without any indication
of failure.
2016-03-07 18:55:18 +01:00
Ales Tamchyna
f13ba3bdfb bugfix 2016-03-07 18:04:17 +01:00
Ales Tamchyna
dab84877ae bugfix 2016-03-07 16:31:41 +01:00
Ales Tamchyna
3bc2124f78 prepend BOS words to target sentence when training VW 2016-03-07 16:18:33 +01:00
Ales Tamchyna
f169c59204 removing outdated method 2016-03-07 15:49:53 +01:00
Ales Tamchyna
7fbbc65902 update vw state 2016-03-07 15:45:51 +01:00
Ales Tamchyna
e4487c8d45 finished a naive implementation of vw target context, it compiles 2016-03-07 15:24:39 +01:00
Ales Tamchyna
0ca54e4d15 keep track of required context size for each VW features 2016-03-07 14:25:04 +01:00
Ales Tamchyna
0704e9c2e5 towards state tracking for VW 2016-03-07 13:52:40 +01:00
Ales Tamchyna
fa8df45656 evaluate VW with target context 2016-03-07 13:17:38 +01:00
Ales Tamchyna
48d9d8e0d4 towards evaluation in target context 2016-03-07 12:41:05 +01:00
Ales Tamchyna
0484739873 when target context features are used in VW, do not add any score before decoding, cache it instead 2016-03-07 11:57:44 +01:00
Ales Tamchyna
8003d28ffa note 2016-03-07 11:05:47 +01:00
Ales Tamchyna
97b1625ffa pseudocode for target-context evaluation in decoding with VW 2016-03-03 17:27:40 +01:00
Ales Tamchyna
82c3254d46 Merge branch 'master' of github.com:moses-smt/mosesdecoder into vw_tgtcontext 2016-03-03 17:03:28 +01:00
Ales Tamchyna
e74e147c84 minor 2016-03-03 17:02:22 +01:00
Ales Tamchyna
396982010b support training with target-context features in VW 2016-03-03 16:29:57 +01:00
Ales Tamchyna
b43e24f953 implemented a basic target context feature 2016-03-03 15:39:46 +01:00
Ales Tamchyna
91541f0b83 target context feature base class 2016-03-03 14:46:51 +01:00
Ales Tamchyna
4b5e49aff9 new vw feature type: target context 2016-03-03 13:50:52 +01:00
Ales Tamchyna
dce605029c make VW feature stateful 2016-03-02 17:28:21 +01:00
Hieu Hoang
b9217cec1d Merge ../mosesdecoder into perf_moses2 2016-03-01 11:08:39 +00:00
Matthias Huck
2d6f616480 Merge branch 'master' of https://github.com/moses-smt/mosesdecoder
Conflicts:
	moses/FF/Model1Feature.cpp
2016-02-22 18:30:11 +00:00
Matthias Huck
5c8c15d345 Model1Feature: skip-target-punctuation parameter 2016-02-22 18:28:23 +00:00
MosesAdmin
6da1343f88 daily automatic beautifier 2016-02-22 00:00:40 +00:00
Hieu Hoang
e6bc481ee2 Merge ../mosesdecoder into perf_moses2 2016-02-21 23:09:46 +00:00
Matthias Huck
71a0fcbc27 Model1Feature: skip over target-side punctuation 2016-02-21 20:44:09 +00:00
Matthias Huck
e284503018 Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-02-20 00:40:23 +00:00
Matthias Huck
ebb18b2dc2 WordTranslationFeature: fix loading of word lists 2016-02-20 00:39:02 +00:00
Kenneth Heafield
7a1baeecda load= option to KenLM exposing more load_method options 2016-02-20 00:07:48 +00:00
Ulrich Germann
63eefe03fd Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-02-19 10:23:21 +00:00
Ulrich Germann
98bcf53ec2 Namespace bug fix. 2016-02-18 16:39:34 +00:00
Hieu Hoang
6a363d893c Merge ../mosesdecoder into perf_moses2 2016-02-17 17:39:51 +00:00
Hieu Hoang
0a1856d510 Merge ../mosesdecoder into perf_moses2 2016-02-17 17:38:07 +00:00
Ales Tamchyna
ca6dba9108 update VW compatibility 2016-02-17 11:27:44 +01:00
Hieu Hoang
0d0f75b6e0 gets right score 2016-02-16 16:03:37 +00:00
Ulrich Germann
d7db5d2441 Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-02-15 16:49:03 +00:00
Ulrich Germann
bbcd10a62d Better option handling in check-coverage3. 2016-02-15 16:48:46 +00:00
MosesAdmin
ca5178b684 daily automatic beautifier 2016-02-13 00:02:04 +00:00
Hieu Hoang
938ef79404 Merge ../mosesdecoder into perf_moses2 2016-02-12 19:40:04 +00:00
Matthias Huck
1659d6b4c8 Option for target constituent constrained phrase extraction. TargetConstituentAdjacencyFeature. 2016-02-12 17:46:57 +00:00
Ulrich Germann
490edf7a82 Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-02-06 15:20:09 +00:00
Ulrich Germann
105225d398 Bug fix. 2016-02-06 15:19:44 +00:00
Hieu Hoang
06769e648d Merge ../mosesdecoder into perf_moses2 2016-02-04 13:05:36 +00:00
Barry Haddow
d48a4fc059 Fix mosesserver for hiero 2016-02-01 16:26:58 +00:00
Barry Haddow
713a8e4233 dont crash if no translation in hiero server 2016-01-29 17:13:03 +00:00
Hieu Hoang
30eb2950ca print probint pt version 2016-01-28 20:33:16 +00:00
Ulrich Germann
cf97a8599f Show all entries in check-coverage3. 2016-01-28 00:09:12 +00:00
Hieu Hoang
974510d0ce Merge ../mosesdecoder into perf_moses2 2016-01-25 14:34:28 +00:00
Ulrich Germann
c2268b559f Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-01-22 17:53:04 +00:00
Ulrich Germann
63b2933902 Improvements to check-coverage3.cc. 2016-01-22 17:52:40 +00:00
Ulrich Germann
56e13d152a Bug fix. 2016-01-20 20:14:38 +00:00
Ulrich Germann
2ab4e0f2fe Look-up phrases with context weights. 2016-01-20 18:44:01 +00:00
Hieu Hoang
357351f545 delete check on how total score is calculated 2016-01-19 22:34:06 +00:00
Ulrich Germann
ffdc9711e9 TrellisPath::InitTotalScore() and TrellisPath::GetScoreBreakDown() now use compute m_totalScore again in an identical fashion. 2016-01-19 18:45:23 +00:00
Ulrich Germann
cb477df36d Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-01-15 22:52:44 +00:00
Ulrich Germann
37e68bcb31 Added Marcin Junczys-Dowmunt's implementation of Johnson et al.'s significance-based phrase table pruning to the master branch. 2016-01-15 22:52:29 +00:00
Hieu Hoang
10cc64ec3f save cache in descending order 2016-01-14 19:45:34 +00:00
Hieu Hoang
c131e3eb73 save most frequent source phrase to cache file 2016-01-14 16:00:10 +00:00
MosesAdmin
7344877741 daily automatic beautifier 2016-01-14 00:00:42 +00:00
Lane Schwartz
10debb4906 Merge branch 'master' of github.com:moses-smt/mosesdecoder 2016-01-13 13:06:39 -06:00
Michael Denkowski
297691db57 Default number of workers to thread count
(control workers with command line --threads option)
2016-01-13 14:02:03 -05:00
Lane Schwartz
5431e91c26 Revert "eclipse"
This reverts commit e0fb456dbb.

The reverted commit broken the moses build.
2016-01-13 12:53:53 -06:00
Lane Schwartz
4dc2257152 Merge branch 'master' of github.com:moses-smt/mosesdecoder 2016-01-13 12:39:24 -06:00
Hieu Hoang
31992defad might have deleted it by accident 2016-01-13 15:14:32 +00:00
Hieu Hoang
38f999fa3f Merge ../mosesdecoder into perf_moses2 2016-01-13 14:57:20 +00:00
Hieu Hoang
e0fb456dbb eclipse 2016-01-13 14:56:45 +00:00
MosesAdmin
c545b4160c daily automatic beautifier 2016-01-13 00:00:52 +00:00
Matthias Huck
3d051db850 TargetPreferencesFeature 2016-01-12 23:09:07 +00:00
Lane Schwartz
6089017cd8 Factored out code in Ken.cpp 2016-01-12 16:05:00 -06:00
Lane Schwartz
f964385a3b ReloadingLM now runs, reloading model before each sentence is translated 2016-01-12 15:54:21 -06:00
Lane Schwartz
b8e5ca51cb No more double LM scores 2016-01-12 15:19:07 -06:00
Lane Schwartz
d58db287c3 ReloadingLM compiles and runs, but gives double the LM score it should 2016-01-12 14:36:14 -06:00
Matthias Huck
020492b9da Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-01-12 18:49:44 +00:00
Lane Schwartz
70b20909b1 Merge branch 'master' of github.com:moses-smt/mosesdecoder into lane_multisrc 2016-01-12 12:49:05 -06:00
Lane Schwartz
f645511e5c Starting work on reloading LM 2016-01-12 12:44:39 -06:00
Matthias Huck
005d5506a1 SoftSourceSyntacticConstraintsFeature log output 2016-01-12 18:04:11 +00:00
Ulrich Germann
8d7dc4b446 Bug fix related to --report-all-factors. 2016-01-12 17:20:29 +00:00
Hieu Hoang
d0a48e71ad Merge ../mosesdecoder into perf_moses2 2016-01-12 09:23:07 +00:00
Ulrich Germann
256d57369a Bug fix in server as suggested by Martin Baumgärtner. 2016-01-11 15:48:36 -06:00
Ulrich Germann
074614974c Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-01-11 21:44:23 +00:00
Ulrich Germann
fdc8e05984 Bug fix in server as suggested by Martin Baumgärtner. 2016-01-11 21:43:58 +00:00
Matthias Huck
a5a4401fe9 TargetPreferencesPhraseProperty 2016-01-11 20:14:28 +00:00
Hieu Hoang
b4e1176c5a Merge ../mosesdecoder into perf_moses2 2016-01-08 11:32:57 +00:00
Matthias Huck
8750c71ef4 PhraseOrientationFeature configuration parameters 2016-01-07 21:52:22 +00:00
Matthias Huck
97e786de12 PhraseOrientationFeature: ignore-boundary configuration parameter 2016-01-07 19:28:08 +00:00
Hieu Hoang
7577a6f84f Merge ../mosesdecoder into perf_moses2 2016-01-07 18:20:27 +00:00
Matthias Huck
fdb4abb778 PhraseOrientationFeature: default config parameter values 2016-01-07 17:36:43 +00:00
Hieu Hoang
79a642bc0e Merge ../mosesdecoder into perf_moses2 2016-01-07 13:01:02 +00:00
Hieu Hoang
5d1bc4b406 log prob 2016-01-07 12:06:49 +00:00
Hieu Hoang
859705431a use program_options to parse command line args 2016-01-07 11:11:31 +00:00
MosesAdmin
f6eaa5daa7 daily automatic beautifier 2016-01-07 00:00:37 +00:00
Hieu Hoang
bf19d71780 Merge ../mosesdecoder into perf_moses2 2016-01-06 21:03:33 +00:00
Matthias Huck
dda3f1867c Hiero phrase orientation 2016-01-06 18:52:14 +00:00
Matthias Huck
f6b0d988d9 eliminate compiler warnings 2016-01-06 17:35:19 +00:00
MosesAdmin
a2431ce62a daily automatic beautifier 2016-01-06 00:00:41 +00:00
Hieu Hoang
05236daf69 Merge ../mosesdecoder into perf_moses2 2016-01-05 10:58:15 +00:00
Ulrich Germann
9caeda5751 Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2016-01-04 22:58:48 +00:00
Ulrich Germann
e594211e25 Fix bug in reporting of word alignment info in batch mode. 2016-01-04 22:53:38 +00:00
Ulrich Germann
b32d7754cd Code cleanup. 2016-01-04 22:51:43 +00:00
MosesAdmin
6e39865213 daily automatic beautifier 2015-12-30 00:00:41 +00:00
Hieu Hoang
f2c4bb53b2 Merge ../mosesdecoder into perf_moses2 2015-12-29 20:05:16 +00:00
Hieu Hoang
11809630ea add PhraseDictionaryMemoryPerSentence 2015-12-29 20:02:25 +00:00
Hieu Hoang
c093bf206e increment probing pt version 2015-12-28 21:15:43 +00:00
Hieu Hoang
94db0753bb exclude LexRO from property column 2015-12-28 16:16:23 +00:00
Hieu Hoang
73516a34c2 append lex probs to pt probs 2015-12-28 15:50:42 +00:00
Hieu Hoang
06cd3b977b append lex probs to pt probs 2015-12-28 13:00:26 +00:00
michaelhutt
cf5d093c4f fixes parameter mismatch in LM::Load 2015-12-23 13:31:49 -05:00
Hieu Hoang
50a75aef1e apply Nikolay's changes to moses2 fork 2015-12-23 13:31:23 +00:00
Nikolay Bogoychev
2951d3496e Change API version and finish up support for additional PT features 2015-12-22 21:06:07 +00:00
Nikolay Bogoychev
6c0ca3fad7 Work to support extra features in the PT 2015-12-22 20:37:06 +00:00
Hieu Hoang
139ee7e0c8 fix tokenization 2015-12-22 18:15:00 +00:00
Hieu Hoang
f3cdad40da correct phrase-table column description and number 2015-12-22 10:55:02 +00:00
Hieu Hoang
24d3e0b326 Merge ../mosesdecoder into perf_moses2 2015-12-22 10:52:37 +00:00
Hieu Hoang
ade0cb6a2f create probing pt without word alignment 2015-12-21 21:46:22 +00:00
Hieu Hoang
dc44436481 integrate compact lex RO 2015-12-20 00:10:28 +00:00
Michael Denkowski
5de46d6ae9 Utility to look up phrase table entries for a corpus
(specifically for dynamic phrase tables like Mmsapt and PhraseDictionaryGroup)
2015-12-18 15:08:40 -05:00
Matthias Huck
0a39efb6c8 Hiero phrase orientation: modify some parameters 2015-12-18 17:24:42 +00:00
Hieu Hoang
b836ab24fb Merge ../mosesdecoder into perf_moses2 2015-12-18 10:26:09 +00:00
Hieu Hoang
b27310d367 always compile with probing pt 2015-12-18 00:26:25 +00:00
Ulrich Germann
e84afbfc1c Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2015-12-17 00:22:19 +00:00
Ulrich Germann
1cd6478415 Updated minor Mmsapt-related utilities to catch up with refactoring of Moses. 2015-12-17 00:21:25 +00:00
Hieu Hoang
4f0dff6a6e Merge ../mosesdecoder into perf_moses2 2015-12-15 18:15:06 +00:00
Hieu Hoang
8b00dbec2e scoring now done in the state class 2015-12-15 13:12:24 -05:00
Hieu Hoang
ffaf24419d Merge ../mosesdecoder into perf_moses2 2015-12-14 13:18:15 +00:00
MosesAdmin
dfcdb43c28 daily automatic beautifier 2015-12-13 23:07:15 +00:00
Ulrich Germann
8b2f1ba529 Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2015-12-13 22:31:58 +00:00
Ulrich Germann
bb6e0157aa Code cleanup and refactoring. 2015-12-13 22:31:43 +00:00
Hieu Hoang
18337d2a22 Merge branch 'master' of github.com:moses-smt/mosesdecoder 2015-12-13 21:36:29 +00:00
Hieu Hoang
4858875289 compile error with compact pt reported by Shaimaa Marzouk 2015-12-13 21:36:18 +00:00
Hieu Hoang
1ba9af09fe Merge ../mosesdecoder into perf_moses2 2015-12-12 18:04:54 +00:00
MosesAdmin
b0d8c397bb daily automatic beautifier 2015-12-12 18:04:13 +00:00
Hieu Hoang
d21f62b8a8 SRI minor compile error 2015-12-12 18:02:52 +00:00
Hieu Hoang
8908fdb9bd Merge ../mosesdecoder into perf_moses2 2015-12-12 17:44:49 +00:00
Ulrich Germann
b899ab8175 Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 2015-12-12 15:31:42 +00:00
Ulrich Germann
9196cd1461 Changes to PhraseDictionaryCompact and LexicalReorderingtableCompact:
- minphr-memory and minlexr-memory are now static members of the respective classes,
  not global variables; they are interpreted by class-specific option interpretation
  functions that are called from StaticData.cpp.
- m_weight has been removed from PhraseDictionaryCompact and PhraseDecoder,
  as it was never used.
2015-12-12 15:28:22 +00:00
MosesAdmin
10531d5f02 daily automatic beautifier 2015-12-12 00:00:41 +00:00
Hieu Hoang
ca80646157 Merge ../mosesdecoder into perf_moses2 2015-12-11 22:30:06 +00:00
Hieu Hoang
4604cc96ba eclipse 2015-12-11 22:29:24 +00:00
Hieu Hoang
b813f893da Merge ../mosesdecoder into perf_moses2 2015-12-11 20:39:21 +00:00
Hieu Hoang
d17fa2ea80 change DALM::Load() - minor compile error. Update eclipse project 2015-12-11 20:39:03 +00:00
Hieu Hoang
e5d3306519 Merge ../mosesdecoder into perf_moses2 2015-12-11 17:29:10 +00:00
Hieu Hoang
51d21b09c0 Merge ../mosesdecoder into perf_moses2 2015-12-11 17:28:31 +00:00
Ulrich Germann
65f4f1f92a Code cleanup and refactoring. 2015-12-11 13:52:48 +00:00