Skip to content

SMT Transfer Build Options

John Lambert edited this page Oct 9, 2024 · 3 revisions

It is possible to override the build settings for the smt-transfer engine by setting the options property when starting a build. The default options for the smt-transfer engine are specified in the Machine.py settings file and are:

  thot_mt:
    word_alignment_model_type: hmm
    tokenizer: latin

To override these defaults or any others, you can enter build options json string such as:

{
    "thot_mt": {
         "word_alignment_model_type": "fastalign"
    }
}