Калинин Александр <verbalab@...> writes: > > Hello, everyone! > > I have the following question: I have trained a huge translation model trained on 1m sentences of news > texts. Also I have several minor translation models trained on texts of different domains. Are there any > tools in Moses that can enable merging translation models? Is it possible to merge models when the decoder > is running? > > Thanks! > > Kind regards, Alex Kalinin. >
Hi Alex, there are several scripts that allow you to merge multiple translation models: http://www.statmt.org/moses/?n=Moses.AdvancedFeatures#ntoc52 if you're interested in merging models at decoding time, you can do a log-linear combination of models ( http://www.statmt.org/moses/?n=Moses.AdvancedFeatures#ntoc18 ), or a linear-interpolation / count-based merge ( http://www.statmt.org/moses/?n=Moses.AdvancedFeatures#ntoc55 ). All methods allow you to weight the models in order to prioritize in-domain models. Check the documentation/literature if you're interested in more details. best wishes, Rico _______________________________________________ Moses-support mailing list [email protected] http://mailman.mit.edu/mailman/listinfo/moses-support
