From cb9ce1e880da216527b988f2a9ffdd0c80efd8ff Mon Sep 17 00:00:00 2001 From: maxchiron <85681332+maxchiron@users.noreply.github.com> Date: Tue, 12 Sep 2023 17:20:34 +0800 Subject: [PATCH] Update install.py --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 24d6fe0..16e20f5 100644 --- a/install.py +++ b/install.py @@ -8,7 +8,7 @@ import urllib.request req_file = os.path.join(os.path.dirname(os.path.realpath(__file__)), "requirements.txt") models_dir = os.path.abspath("models/roop") -model_url = "https://huggingface.co/deepinsight/inswapper/resolve/main/inswapper_128.onnx" +model_url = "https://github.com/dream80/roop_colab/releases/download/v0.0.1/inswapper_128.onnx" model_name = os.path.basename(model_url) model_path = os.path.join(models_dir, model_name)