From 5f80ee9b38aec72595c9cda1c4816a70f224943e Mon Sep 17 00:00:00 2001 From: mrq Date: Mon, 4 Sep 2023 22:09:09 +0000 Subject: [PATCH] set use-deepspeed to false because it's not a dependency and installing it as a dependency under windows is a huge nightmare --- src/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.py b/src/utils.py index e7cad07..9489683 100755 --- a/src/utils.py +++ b/src/utils.py @@ -3272,7 +3272,7 @@ def setup_args(cli=False): 'embed-output-metadata': True, 'latents-lean-and-mean': True, 'voice-fixer': False, # getting tired of long initialization times in a Colab for downloading a large dataset for it - 'use-deepspeed': True, + 'use-deepspeed': False, 'voice-fixer-use-cuda': True, @@ -3959,4 +3959,4 @@ def merge_models( primary_model_name, secondary_model_name, alpha, progress=gr.P torch.save(theta_0, output_path) message = f"Saved to {output_path}" print(message) - return message \ No newline at end of file + return message