From 97457992d30c23a5f676b5133625d0df83015535 Mon Sep 17 00:00:00 2001 From: Lukasz Liniewicz <75737665+lukaszliniewicz@users.noreply.github.com> Date: Mon, 11 Nov 2024 06:06:45 +0100 Subject: [PATCH] Update pandrator_installer_launcher.py --- pandrator_installer_launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandrator_installer_launcher.py b/pandrator_installer_launcher.py index 0a5c4d8..31e04fc 100644 --- a/pandrator_installer_launcher.py +++ b/pandrator_installer_launcher.py @@ -195,7 +195,7 @@ def install_pytorch_for_xtts_finetuning(self, conda_path, env_name): self.run_command([ os.path.join(conda_path, 'Scripts', 'conda.exe'), 'run', '-p', env_path, - 'pip', 'install', 'torch==2.1.1+cu118', 'torchaudio==2.1.1+cu118', + 'pip', 'install', 'torch==2.2.0+cu118', 'torchaudio==2.2.0+cu118', '--index-url', 'https://download.pytorch.org/whl/cu118' ]) logging.info("PyTorch for XTTS Fine-tuning installed successfully.")