hbs2 commited on
Commit
a480e52
1 Parent(s): 8df5211

Update subgen.py

Browse files
Files changed (1) hide show
  1. subgen.py +1 -1
subgen.py CHANGED
@@ -92,7 +92,7 @@ def update_env_variables():
92
  transcribe_folders = os.getenv('TRANSCRIBE_FOLDERS', '')
93
  transcribe_or_translate = os.getenv('TRANSCRIBE_OR_TRANSLATE', 'transcribe')
94
  force_detected_language_to = os.getenv('FORCE_DETECTED_LANGUAGE_TO', '').lower()
95
- clear_vram_on_complete = convert_to_bool(os.getenv('CLEAR_VRAM_ON_COMPLETE', True))
96
  compute_type = os.getenv('COMPUTE_TYPE', 'auto')
97
  append = convert_to_bool(os.getenv('APPEND', False))
98
  reload_script_on_change = convert_to_bool(os.getenv('RELOAD_SCRIPT_ON_CHANGE', False))
 
92
  transcribe_folders = os.getenv('TRANSCRIBE_FOLDERS', '')
93
  transcribe_or_translate = os.getenv('TRANSCRIBE_OR_TRANSLATE', 'transcribe')
94
  force_detected_language_to = os.getenv('FORCE_DETECTED_LANGUAGE_TO', '').lower()
95
+ clear_vram_on_complete = convert_to_bool(os.getenv('CLEAR_VRAM_ON_COMPLETE', False))
96
  compute_type = os.getenv('COMPUTE_TYPE', 'auto')
97
  append = convert_to_bool(os.getenv('APPEND', False))
98
  reload_script_on_change = convert_to_bool(os.getenv('RELOAD_SCRIPT_ON_CHANGE', False))