TMODS:ENG-CZE -- query translation component ============================================ Installation: 1) Download and compile the Moses decoder: (Requires Boost, libXML and CMPH.) git clone https://github.com/moses-smt/mosesdecoder.git cd mosesdecoder ./bjam --with-xmlrpc= --max-kenlm-order=12 --with-cmph= cd .. 2) Download and configure MTMonkey: (See MTMonkey documentation for installation requirements.) git clone https://github.com/ufal/mtmonkey cd mtmonkey git checkout chimera_preprocessing # the tested commit ID is d0e3175ee112a3fdd4790ccd1b0ff4e5d90c8d04 cd .. 3) Install MorphoDita and its Python bindings. Follow the steps described here: http://ufal.mff.cuni.cz/morphodita/install#python_installation 4) Download Morphodita model for Czech: http://hdl.handle.net/11858/00-097C-0000-0023-68D8-1 Copy the model in the MTMonkey directory: cp czech-morfflex-pdt-131112.tagger-fast mtmonkey 5) Start the Moses server: cd model nohup ../mosesdecoder/bin/server -f moses.ini &>mosesserver.log & 6) Start the MTMonkey application server and worker: nohup ../mtmonkey/appserver/src/appserver.py -c `pwd`/appserver.cfg &> appserver.log & nohup ../mtmonkey/worker/src/worker.py -c worker.cfg &> worker.log &