We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a410c commit 79a9260Copy full SHA for 79a9260
machine/jobs/build_nmt_engine.py
@@ -55,6 +55,8 @@ def clearml_progress(status: ProgressStatus) -> None:
55
except TypeError as e:
56
raise TypeError(f"Build options could not be parsed: {e}") from e
57
SETTINGS.update({model_type: build_options})
58
+ if "align_pretranslations" in build_options:
59
+ SETTINGS.update({"align_pretranslations": build_options["align_pretranslations"]})
60
SETTINGS.data_dir = os.path.expanduser(cast(str, SETTINGS.data_dir))
61
62
logger.info(f"Config: {SETTINGS.as_dict()}")
0 commit comments