Spaces:
Running
on
Zero
Running
on
Zero
Update constants.py
#13
by
Spestly
- opened
- app.py +0 -1
- constants.py +2 -2
- requirements.txt +2 -4
app.py
CHANGED
@@ -175,7 +175,6 @@ class GuiSD:
|
|
175 |
dtype_model = torch.bfloat16 if model_type == "FLUX" else torch.float16
|
176 |
|
177 |
if not os.path.exists(model_name):
|
178 |
-
print("debug", model_name, vae_model, task, controlnet_model)
|
179 |
_ = download_diffuser_repo(
|
180 |
repo_name=model_name,
|
181 |
model_type=model_type,
|
|
|
175 |
dtype_model = torch.bfloat16 if model_type == "FLUX" else torch.float16
|
176 |
|
177 |
if not os.path.exists(model_name):
|
|
|
178 |
_ = download_diffuser_repo(
|
179 |
repo_name=model_name,
|
180 |
model_type=model_type,
|
constants.py
CHANGED
@@ -127,8 +127,8 @@ LOAD_DIFFUSERS_FORMAT_MODEL = [
|
|
127 |
'John6666/duchaiten-pony-real-v11fix-sdxl',
|
128 |
'John6666/duchaiten-pony-real-v20-sdxl',
|
129 |
'John6666/duchaiten-pony-xl-no-score-v70-sdxl',
|
130 |
-
'
|
131 |
-
'
|
132 |
'KBlueLeaf/Kohaku-XL-Zeta',
|
133 |
'cagliostrolab/animagine-xl-3.1',
|
134 |
'yodayo-ai/kivotos-xl-2.0',
|
|
|
127 |
'John6666/duchaiten-pony-real-v11fix-sdxl',
|
128 |
'John6666/duchaiten-pony-real-v20-sdxl',
|
129 |
'John6666/duchaiten-pony-xl-no-score-v70-sdxl',
|
130 |
+
'odyssey-labs/OdysseyXL-3.0',
|
131 |
+
'odyssey-labs/OdysseyXL-4.0',
|
132 |
'KBlueLeaf/Kohaku-XL-Zeta',
|
133 |
'cagliostrolab/animagine-xl-3.1',
|
134 |
'yodayo-ai/kivotos-xl-2.0',
|
requirements.txt
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
-
stablepy==0.6.
|
2 |
torch==2.2.0
|
3 |
gdown
|
4 |
opencv-python
|
5 |
-
unidecode
|
6 |
-
pydantic==2.10.6
|
7 |
-
huggingface_hub==0.29.3
|
|
|
1 |
+
stablepy==0.6.0
|
2 |
torch==2.2.0
|
3 |
gdown
|
4 |
opencv-python
|
5 |
+
unidecode
|
|
|
|