Skip to content

Statistical Alignment Build Options

John Lambert edited this page Oct 9, 2024 · 1 revision

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

  thot_align:
    word_alignment_heuristic: grow-diag-final-and
    model_type: hmm
    tokenizer: latin

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

{
    "thot_align": {
         "model_type": "fastalign"
    }
}