Update align.py
Browse files
align.py
CHANGED
@@ -149,8 +149,8 @@ class AlignmentConfig:
|
|
149 |
|
150 |
# Output file configs
|
151 |
save_output_file_formats: List[str] = field(default_factory=lambda: ["ctm", "ass"])
|
152 |
-
ctm_file_config: CTMFileConfig = CTMFileConfig
|
153 |
-
ass_file_config: ASSFileConfig = ASSFileConfig
|
154 |
|
155 |
|
156 |
@hydra_runner(config_name="AlignmentConfig", schema=AlignmentConfig)
|
|
|
149 |
|
150 |
# Output file configs
|
151 |
save_output_file_formats: List[str] = field(default_factory=lambda: ["ctm", "ass"])
|
152 |
+
ctm_file_config: CTMFileConfig = field(default_factory=CTMFileConfig)
|
153 |
+
ass_file_config: ASSFileConfig = field(default_factory=ASSFileConfig)
|
154 |
|
155 |
|
156 |
@hydra_runner(config_name="AlignmentConfig", schema=AlignmentConfig)
|