aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-11-29 17:06:15 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-11-29 17:06:15 +0300
commit4b3c5bc24bffdf429c463a465763b3077fe55eb8 (patch)
treef05e78133cd52619d56fc99a12eceaade4b15ac4
parent0b5dcb3d7ce397ad38312dbfc70febe7bb42dcc3 (diff)
parentac90cf38c6b55d57d37923aa1fe86c7374e32d0b (diff)
Merge remote-tracking branch 'pattontim/safetensors'
-rw-r--r--.gitignore1
-rw-r--r--modules/modelloader.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index ee53044c..21fa26a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
__pycache__
*.ckpt
+*.safetensors
*.pth
/ESRGAN/*
/SwinIR/*
diff --git a/modules/modelloader.py b/modules/modelloader.py
index e4a6f8ac..7d2f0ade 100644
--- a/modules/modelloader.py
+++ b/modules/modelloader.py
@@ -82,6 +82,7 @@ def cleanup_models():
src_path = models_path
dest_path = os.path.join(models_path, "Stable-diffusion")
move_files(src_path, dest_path, ".ckpt")
+ move_files(src_path, dest_path, ".safetensors")
src_path = os.path.join(root_path, "ESRGAN")
dest_path = os.path.join(models_path, "ESRGAN")
move_files(src_path, dest_path)