We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b5dcb3 + ac90cf3 commit 4b3c5bcCopy full SHA for 4b3c5bc
.gitignore
@@ -1,5 +1,6 @@
1
__pycache__
2
*.ckpt
3
+*.safetensors
4
*.pth
5
/ESRGAN/*
6
/SwinIR/*
modules/modelloader.py
@@ -82,6 +82,7 @@ def cleanup_models():
82
src_path = models_path
83
dest_path = os.path.join(models_path, "Stable-diffusion")
84
move_files(src_path, dest_path, ".ckpt")
85
+ move_files(src_path, dest_path, ".safetensors")
86
src_path = os.path.join(root_path, "ESRGAN")
87
dest_path = os.path.join(models_path, "ESRGAN")
88
move_files(src_path, dest_path)
0 commit comments