From a4d09341caa4419da015dea5055ded500ff41273 Mon Sep 17 00:00:00 2001 From: John Lambert Date: Wed, 28 Aug 2024 15:27:27 -0400 Subject: [PATCH] small change --- machine/jobs/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/machine/jobs/__init__.py b/machine/jobs/__init__.py index e9d853c..5c8fb67 100644 --- a/machine/jobs/__init__.py +++ b/machine/jobs/__init__.py @@ -5,6 +5,8 @@ from .shared_file_service_base import DictToJsonWriter, SharedFileServiceBase from .smt_engine_build_job import SmtEngineBuildJob from .smt_model_factory import SmtModelFactory +from .thot.thot_smt_model_factory import ThotSmtModelFactory +from .thot.thot_word_alignment_model_factory import ThotWordAlignmentModelFactory from .translation_file_service import PretranslationInfo, TranslationFileService from .word_alignment_build_job import WordAlignmentBuildJob from .word_alignment_file_service import WordAlignmentFileService @@ -19,6 +21,8 @@ "SharedFileServiceBase", "SmtEngineBuildJob", "SmtModelFactory", + "ThotSmtModelFactory", + "ThotWordAlignmentModelFactory", "PretranslationInfo", "TranslationFileService", "WordAlignmentBuildJob",