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
2015-05-15beautify.Hieu Hoang
2015-05-15Bug fix.Ulrich Germann
2015-05-15Move ignored path prefixes into config file.Jeroen Vermeulen
The path prefixes listed in .beautify-ignore, in the project root, will not be cleaned up. C and C++ files everywhere else will be. Also fixes bugs in the prefix-matching code, and makes the matching a little bit more powerful: the prefix can now extend down into the directory tree.
2015-05-15Remove the --any-astyle option.Jeroen Vermeulen
The risk from flip-flopping on styles is too great: 2.04 formatting has many changes from 2.01 formatting. Also, fix a broken version check.
2015-05-15Merge branch 'master' of github.com:moses-smt/mosesdecoderMarcin Junczys-Dowmunt
2015-05-15quick fix for out-of-bound alignment pointsMarcin Junczys-Dowmunt
2015-05-15Rewrite beautify script in Python.Jeroen Vermeulen
The new version is much longer, but hopefully extensible, reusable, and easy to read. With a few more changes it will let us do three things: 1. Apply more checks and cleanups. 2. Clean up additional file types. 3. Use the same script for mgiza++, so we get a uniform code style. The "more cleanups" could be more things like the removal of trailing whitespace which we just added. We may even want to run lint checkers of some sort. Additional file types could be e.g. Perl scripts, build configuration, or documentation. In order to make the script reusable we'll have to generalize the skip_at_root list in list_c_like_files into something like a configuration file.
2015-05-15Revert "Try to fix moses_chart symlinking for Amittai Axelrod"Kenneth Heafield
This reverts commit ed7ff35ff80e1292173ed41a6fdae47e1ae017fd.
2015-05-14Try to fix moses_chart symlinking for Amittai AxelrodKenneth Heafield
2015-05-13Merge branch 'master' of github.com:moses-smt/mosesdecoderBarry Haddow
2015-05-13format of outputBarry Haddow
2015-05-13dependency on hgdecodeBarry Haddow
2015-05-13beautify. Add sed for trailing spacesHieu Hoang
2015-05-13move hg decoding test to reg testsBarry Haddow
2015-05-13Remove trailing whitespace from C++ files.Jeroen Vermeulen
2015-05-13Refactoring of weight loading, making it easier to test hg rescoring.Barry Haddow
2015-05-13tighten up OSM build. More debugging output, to stderr not stdout. lmplz ↵Hieu Hoang
uses outdir as temp directory
2015-05-12morfessor wrapperHieu Hoang
2015-05-12osm tweaks and morfessor wrapperHieu Hoang
2015-05-12default to using lmplz for convenience and because SRILM uses tonnes of memoryHieu Hoang
2015-05-12Merge branch 'master' of github.com:moses-smt/mosesdecoderHieu Hoang
2015-05-12default to using lmplz for convenience and because SRILM uses tonnes of memoryHieu Hoang
2015-05-12Fix typo in mmap call.Jeroen Vermeulen
The case where !m_fixed passed m_map_size to mmap(), but the "else" clause passed map_size. In replacing mmap() with the portable wrapper, I accidentally changed that to be m_map_size as well. Besides fixing that, I'm changing the name of the variable to be more clearly distinguishable from m_map_size.
2015-05-12Merge branch 'master' of https://github.com/moses-smt/mosesdecoderUlrich Germann
2015-05-12Code reorganization with respect to hypergraph output.Ulrich Germann
2015-05-12Reformatting.Ulrich Germann
2015-05-11codeliteHieu Hoang
2015-05-11add no-splitter-training argument. Splitter to be used by madaHieu Hoang
2015-05-11Merge branch 'master' of https://github.com/moses-smt/mosesdecoderUlrich Germann
2015-05-11Added context buffering in IOWrapper for context-sensitive decoding.Ulrich Germann
Unfortunately, this seems to slow things down quite a bit.
2015-05-11Tweaks to logging for biased sampling.Ulrich Germann
2015-05-11Logging of latency of bias lookup via server.Ulrich Germann
2015-05-11Additional check for document map if document bias is requested.Ulrich Germann
2015-05-10beautifyHieu Hoang
2015-05-10Modernize symal source code.Jeroen Vermeulen
Part of symal was still written in K&R C (though with an anachronistic C99 version comment!). Updating it to ANSI C, adding const in many places for clarity. Reordering functions to eliminate forward declarations. Moving definition of Cmd_T into cmd.c, since it's local to that file. Adding some wrappers to reduce the casts around Cmd_T.p. Narrowing the scope of some variables. Also updating the C++: use anonymous namespace for "static" definitions, use enums and constants instead of preprocessor macros, use false/true as boolean constants, throw exceptions instead of print-and-exit, avoid use of "final" as an identifier since it's now a reserved word.
2015-05-08Merge branch 'master' of github.com:moses-smt/mosesdecoderBarry Haddow
2015-05-08mmsapt doesn't require feature weights on first tuning iterationBarry Haddow
2015-05-05Add profiling option to the testsuite. Untested.XapaJIaMnu
2015-05-05output bleu for multi-bleu hackHieu Hoang
2015-05-05don't output remaining args twiceHieu Hoang
2015-05-05Merge branch 'master' of github.com:moses-smt/mosesdecoderHieu Hoang
2015-05-05output debugging messages to stderr, not stdoutHieu Hoang
2015-05-04bug fixNicola Bertoldi
2015-05-04merge remote into localNicola Bertoldi
2015-05-04made ProbingPT constructor compliant with PhraseDictionary signatureNicola Bertoldi
2015-05-04made use of boost::shared_mutex dependent from WITH_THREADSNicola Bertoldi
2015-05-03Merge branch 'master' of https://github.com/moses-smt/mosesdecoderUlrich Germann
2015-05-03Bug fix wrt. lexical reordering of OOV words in combination with Mmsapt.Ulrich Germann
2015-05-03add multi-bleu-detok. Like multi-bleu scoring but will ↵Hieu Hoang
detokenize/post-process before scoring
2015-05-03Merge branch 'master' of github.com:moses-smt/mosesdecoderHieu Hoang