https://github.com/wilkeraziz/mosesdecoder

sort by:
Revision Author Date Message Commit Date
6ab2d4d Removed ranking stuff prior to merge with master. 28 July 2015, 19:15:14 UTC
4510168 No ranked sampling for the time being. 28 July 2015, 18:35:27 UTC
0141c7d Merge branch 'mmt-dev' of http://github.com/ModernMT/mosesdecoder into ranked-sampling 28 July 2015, 13:31:22 UTC
d67723f Merge branch 'master' of http://github.com/moses-smt/mosesdecoder into ranked-sampling Conflicts: moses/TargetPhrase.cpp moses/TargetPhrase.h 28 July 2015, 13:29:49 UTC
d1cb249 Removed building of cooccurrence table from mmlex-build. 28 July 2015, 13:24:06 UTC
2faa9e6 Multi-threaded sorting when building suffix array. 28 July 2015, 13:23:23 UTC
70a1c88 New dummy bias that always returns 1. Purpose: to keep track of phrase counts per document. If no bias is given, no per-documents counts are stored. 26 July 2015, 20:23:13 UTC
f26e200 work in progress 26 July 2015, 20:21:19 UTC
a1652b4 Fix typo. 26 July 2015, 20:20:40 UTC
b64af59 daily automatic beautifier 24 July 2015, 23:00:40 UTC
31df959 Model1Feature 24 July 2015, 20:51:34 UTC
21aaec0 Removed some duplicate code. Can we move all or parts of moses/Util to util/, and from the Moses namespace to the util namespace? There's quite some common functionality in it that is not only relevant to the decoder, but also to phrase extraction and possibly other parts of the toolkit. 24 July 2015, 20:01:13 UTC
472529a Moses::Scan too inefficient 24 July 2015, 19:43:29 UTC
9e31bce MinCount parameter in score-main 24 July 2015, 18:42:15 UTC
5fca4c6 minor maintenance of sparse features code (PhrasePairFeature, RulePairUnlexicalizedSource, SoftMatchingFeature, SourceWordDeletionFeature, WordTranslationFeature) 24 July 2015, 18:26:16 UTC
e53ad40 Support for nplm in ems 23 July 2015, 09:37:26 UTC
8da4804 Initial check-in. 22 July 2015, 23:13:19 UTC
8e393c7 Logging of priming time in ranked sampling. 22 July 2015, 23:12:34 UTC
f1bde0a Map instead of vector for bias map in SamplingBias. 22 July 2015, 23:12:00 UTC
09d0909 Trying to make sampling more efficient for large document collections underlying the sampling phrase table. 22 July 2015, 23:10:52 UTC
0530378 Increased verbosity threshold for logging document map. 22 July 2015, 23:08:33 UTC
56da712 Bug fix: TargetPhrase::GetTtask() must return shared pointer, not reference to shared pointer. 22 July 2015, 23:06:54 UTC
ce62565 daily automatic beautifier 21 July 2015, 23:00:54 UTC
5aaa8fc 1. Fixed concurrency issue in context handling. 2. Added phrase table feature function PScoreLengthRatio. 21 July 2015, 14:36:28 UTC
506e02b Added utility function len_from_pid(). 21 July 2015, 14:32:47 UTC
80db548 Fixed typo in comment. 21 July 2015, 14:31:46 UTC
1b65474 added switch -fopenmp to compilation of BiLM_NPML.o 21 July 2015, 14:30:16 UTC
c989b8f apply Pidong Wang's patch for server to new server code in moses/ 21 July 2015, 12:46:32 UTC
8eedb3f Merge branch 'master' of github.com:moses-smt/mosesdecoder 21 July 2015, 10:07:15 UTC
c3424ce daily automatic beautifier 20 July 2015, 23:00:42 UTC
1a795f5 only extract reordering phrase pairs if use mmsapt phrase table 20 July 2015, 15:47:24 UTC
777a886 compress sort tmp files by default 20 July 2015, 15:46:47 UTC
93238fa directly write gzipped file 20 July 2015, 15:46:07 UTC
b4b30cf fix some compile time warnings about unsigned / signed int 20 July 2015, 15:45:23 UTC
496f8c6 only extract reordering phrase pairs if use mmsapt phrase table 20 July 2015, 15:44:22 UTC
fcf2934 customized phrase table pruning step 20 July 2015, 15:43:02 UTC
6d0f482 extended phrase lookup: print sentences, document id 20 July 2015, 15:41:48 UTC
ec3413f allow customized prefix/suffix to mark unknown words 20 July 2015, 15:40:53 UTC
7b19d83 xml support for combine-factors.pl 20 July 2015, 09:45:18 UTC
1b1bafb ems: add option to factorize after truecase/split/etc. 20 July 2015, 09:43:23 UTC
bec950c support factors in InternalTree 20 July 2015, 09:39:01 UTC
e85f353 code simplification by removing language-specific, unused hack. 20 July 2015, 09:39:01 UTC
ad4fdc5 Re-enabled actual caching (get always returned NULL). Moved point of locking in release() in an attempt to battle segfaults. 18 July 2015, 18:02:47 UTC
df50e45 Proper handling of moses parameters with double dash in create_config(). 17 July 2015, 13:32:30 UTC
c114274 relax-parse: write node attributes to output 17 July 2015, 13:11:56 UTC
a64468a Document WordsBitmap performance considerations. 17 July 2015, 12:23:47 UTC
342598a Cosmetic. 17 July 2015, 12:17:38 UTC
1ffcd17 daily automatic beautifier 16 July 2015, 23:00:42 UTC
47bea6a Merge branch 'master' of github.com:moses-smt/mosesdecoder 16 July 2015, 19:26:23 UTC
93409db Merge branch 'master' of https://github.com/moses-smt/mosesdecoder 16 July 2015, 18:55:52 UTC
b3baade changes to make static build work, and limit the number of concurrent connections to moses server. /Pidong Wang 16 July 2015, 18:55:16 UTC
c83628a Fix errors from multiline `` commands in transliteration Perl scripts Replace the backslash-newline sequence with backslash-backslash-newline in multiline backquote command strings. i.e. replace expressions like this: `some-command \ -option1 \ -option2`; with ones like this `some-command \\ -option1 \\ -option2`; If I understand this right, the shell converts a backslash-newline sequence to an empty string (i.e. it discards it), but Perl does not. Unless the backslash itself is escaped, using a backslash-newline in a Perl command string results in errors in most instances. By escaping the backslash, it gets passed through to the shell where it is interpreted as intended. 16 July 2015, 13:54:00 UTC
4330045 Replace WordsBitmap malloc() with std::vector. It'd be great to use the specialized vector<bool>, or Boost's dynamic_bitset, for this. But gcc and clang don't have an optimized find() for vector<bool>, making it slower rather than faster. And dynamic_bitset doesn't have reverse searches or searches for false. 16 July 2015, 10:56:20 UTC
d4508e9 Compare nullness in Hypothesis::RecombineCompare. The comparison code subtracted two pointers in the case where at least one was null, to get a signed int comparison result. But that subtraction is undefined, and the cast to int (dropping the most-significant bits!) made the outcome even less uncertain. In this patch I compare the nullness of the pointers instead, which should always return a well-defined -1, 0, or 1. 16 July 2015, 09:48:20 UTC
0ca2bcb End line after printing progress dots to stderr. 16 July 2015, 08:51:16 UTC
9c744d2 Merge branch 'master' of github.com:moses-smt/mosesdecoder 15 July 2015, 07:38:00 UTC
66ecf98 minor bug fix 14 July 2015, 15:01:22 UTC
ca72105 fix ems regression 14 July 2015, 12:16:25 UTC
7e3050f allow saving of model from fast-align (for incremental use) 14 July 2015, 09:27:03 UTC
b13b9a3 daily automatic beautifier 13 July 2015, 23:00:43 UTC
e94007c Mmsapt can now handle factorized phrase tables with more than one factor. 13 July 2015, 16:51:44 UTC
0abef8c Moved m_ttask and m_ttash_flag in initialization orderto avoid compiler warnings. 13 July 2015, 16:50:14 UTC
227cfb8 Merge branch 'master' into mmt-dev 13 July 2015, 14:19:13 UTC
1d059ee Merge branch 'master' of github.com:moses-smt/mosesdecoder 13 July 2015, 13:43:05 UTC
f7938f4 Merge branch 'mmt-dev' of http://github.com/modernMT/mosesdecoder Conflicts: moses/BaseManager.cpp moses/StaticData.cpp moses/TargetPhrase.cpp moses/TargetPhrase.h 13 July 2015, 13:42:59 UTC
da117e7 Bug fix related to m_ttask_flag in TargetPhrase. Also changed m_ttask to weak pointer in TargetPhrase. 13 July 2015, 13:25:17 UTC
cc5f128 Allow 'ranked' as alias for sampling method 'rank'. 10 July 2015, 23:24:20 UTC
3fdbb00 Improvements to handling of bilingual LM in EMS 10 July 2015, 14:44:24 UTC
37342f6 Changed verbosity level to 2 for using default values for FF weights. 07 July 2015, 23:14:22 UTC
03e19dd Commented out m_rnd_denom. Not used. 07 July 2015, 19:16:41 UTC
36bab92 Test and fix errors in the profiling part of speedtest and update documentation. Works. 07 July 2015, 10:14:50 UTC
8bdbfe5 1. Added initialization of pstats cache on ContextForQuery. 2. Code cleanup: removed obsolete code. 06 July 2015, 23:12:56 UTC
47eb0bd Added seeding of random generator to produce the same results across repeated runs of the decoder. 06 July 2015, 23:12:20 UTC
e7228ec extract-ghkm: minor refactoring 06 July 2015, 13:41:34 UTC
540f9e9 Update documentation for google-profiler. Untested 06 July 2015, 13:19:59 UTC
44372d7 extract-ghkm: fix a couple of exception-related issues 06 July 2015, 11:05:41 UTC
4f155f1 codelite 06 July 2015, 10:07:50 UTC
4dd2ea3 Added random sampling to BitextSampler. 05 July 2015, 12:08:57 UTC
0fe0f78 daily automatic beautifier 03 July 2015, 23:00:44 UTC
078c8f7 Some fixes in the profiler config and added possibility to use google-profiler. Untested still, no documentaion 03 July 2015, 16:51:00 UTC
e1f3166 Fixes to make things compile after merging with branch mmt-dev. 03 July 2015, 16:20:27 UTC
98c03dc Merge branch 'mmt-dev' into ranked-sampling. Conflicts: moses/TranslationModel/UG/mm/ug_bitext.h moses/TranslationModel/UG/mm/ug_bitext_jstats.cc moses/TranslationModel/UG/mm/ug_bitext_jstats.h moses/TranslationModel/UG/mm/ug_bitext_pstats.cc moses/TranslationModel/UG/mm/ug_sampling_bias.cc moses/TranslationModel/UG/mm/ug_sampling_bias.h 03 July 2015, 14:30:33 UTC
9dae3eb Code cleanup. 03 July 2015, 14:11:21 UTC
bd267bd Merge branch 'master' into mmt-dev Conflicts: moses/StaticData.cpp 03 July 2015, 14:01:55 UTC
ba912b6 Merge branch 'master' of http://github.com/moses-smt/mosesdecoder Conflicts: moses/StaticData.cpp 02 July 2015, 23:29:48 UTC
536a738 Merge branch 'master' of http://github.com/moses-smt/mosesdecoder into mmt-dev Conflicts: moses/StaticData.cpp 02 July 2015, 23:27:09 UTC
b67a8a4 daily automatic beautifier 02 July 2015, 23:00:41 UTC
f78bb4a Bigger K-best list to accommodate phrase extraction failure. 02 July 2015, 22:56:53 UTC
1c25b29 Show from which documents phrase translations were collected. 02 July 2015, 22:55:14 UTC
64ec34d Proper indentation with spaces (no tabs). 02 July 2015, 22:49:00 UTC
b05ca8c Fixes to make code compile on various versions of gcc. 02 July 2015, 17:06:55 UTC
070e0a8 LD_PRELOAD systax was wrong 02 July 2015, 15:57:17 UTC
01e6b3f Merge branch 'master' of github.com:moses-smt/mosesdecoder 02 July 2015, 09:31:21 UTC
e94921d Removal of 'using namespace ...' from several header files. 02 July 2015, 00:32:34 UTC
515862e Reformatting for readability. 02 July 2015, 00:31:11 UTC
86292f2 daily automatic beautifier 01 July 2015, 23:01:16 UTC
106668d Changed m_ttask from ttasksptr to ttaskwptr in TargetPhrase ... .. to avoid blocking destruction of TranslationTask at the end of its lifetime. 01 July 2015, 13:48:25 UTC
851a801 Bug fix in copy constructor of TargetPhrase: m_ttask_flag wasn't copied but always set to true. 01 July 2015, 13:01:57 UTC
61067b4 Merge branch 'FF_ttptr' of http://github.com/moses-smt/mosesdecoder 01 July 2015, 12:25:26 UTC
81f337b rollback c++11 for now 01 July 2015, 05:42:07 UTC
back to top