Skip to content

Commit

Permalink
Moved scene threshold above batch threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
machinewrapped committed Mar 8, 2024
1 parent f78ea9c commit 67d4540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GUI/NewProjectSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ class NewProjectSettings(QDialog):
'target_language': (str, "Language to translate the subtitles to"),
'provider': ([], "The AI translation service to use"),
'model': (str, "AI model to use as the translator"),
'scene_threshold': (float, "Number of seconds gap to consider it a new scene"),
'min_batch_size': (int, "Fewest lines to send in separate batch"),
'max_batch_size': (int, "Most lines to send in each batch"),
'scene_threshold': (float, "Number of seconds gap to consider it a new scene"),
'use_simple_batcher': (bool, "Use old batcher instead of batching dynamically based on gap size"),
'batch_threshold': (float, "Number of seconds gap to consider starting a new batch (simple batcher)"),
'instruction_file': (str, "Detailed instructions for the translator"),
Expand Down

0 comments on commit 67d4540

Please sign in to comment.