Spaces:
Running
on
Zero
Running
on
Zero
Upload 3 files
Browse files- constants.py +6 -1
- env.py +1 -0
- requirements.txt +1 -1
constants.py
CHANGED
@@ -35,6 +35,8 @@ LOAD_DIFFUSERS_FORMAT_MODEL = [
|
|
35 |
'John6666/noobai-xl-nai-xl-vpredtestversion-sdxl',
|
36 |
'John6666/chadmix-noobai075-illustrious01-v10-sdxl',
|
37 |
'OnomaAIResearch/Illustrious-xl-early-release-v0',
|
|
|
|
|
38 |
'John6666/obsession-illustriousxl-v21-sdxl',
|
39 |
'eienmojiki/Anything-XL',
|
40 |
'eienmojiki/Starry-XL-v5.2',
|
@@ -113,6 +115,7 @@ LOAD_DIFFUSERS_FORMAT_MODEL = [
|
|
113 |
DIFFUSERS_FORMAT_LORAS = [
|
114 |
"nerijs/animation2k-flux",
|
115 |
"XLabs-AI/flux-RealismLora",
|
|
|
116 |
]
|
117 |
|
118 |
DOWNLOAD_EMBEDS = [
|
@@ -288,7 +291,9 @@ MODEL_TYPE_CLASS = {
|
|
288 |
"diffusers:FluxPipeline": "FLUX",
|
289 |
}
|
290 |
|
291 |
-
POST_PROCESSING_SAMPLER = ["Use same sampler"] +
|
|
|
|
|
292 |
|
293 |
SUBTITLE_GUI = (
|
294 |
"### This demo uses [diffusers](https://github.com/huggingface/diffusers)"
|
|
|
35 |
'John6666/noobai-xl-nai-xl-vpredtestversion-sdxl',
|
36 |
'John6666/chadmix-noobai075-illustrious01-v10-sdxl',
|
37 |
'OnomaAIResearch/Illustrious-xl-early-release-v0',
|
38 |
+
'John6666/illustriousxl-mmmix-v50-sdxl',
|
39 |
+
'John6666/illustrious-pencil-xl-v200-sdxl',
|
40 |
'John6666/obsession-illustriousxl-v21-sdxl',
|
41 |
'eienmojiki/Anything-XL',
|
42 |
'eienmojiki/Starry-XL-v5.2',
|
|
|
115 |
DIFFUSERS_FORMAT_LORAS = [
|
116 |
"nerijs/animation2k-flux",
|
117 |
"XLabs-AI/flux-RealismLora",
|
118 |
+
"Shakker-Labs/FLUX.1-dev-LoRA-Logo-Design",
|
119 |
]
|
120 |
|
121 |
DOWNLOAD_EMBEDS = [
|
|
|
291 |
"diffusers:FluxPipeline": "FLUX",
|
292 |
}
|
293 |
|
294 |
+
POST_PROCESSING_SAMPLER = ["Use same sampler"] + [
|
295 |
+
name_s for name_s in scheduler_names if "Auto-Loader" not in name_s
|
296 |
+
]
|
297 |
|
298 |
SUBTITLE_GUI = (
|
299 |
"### This demo uses [diffusers](https://github.com/huggingface/diffusers)"
|
env.py
CHANGED
@@ -110,6 +110,7 @@ LOAD_DIFFUSERS_FORMAT_MODEL = [
|
|
110 |
'Raelina/Raemu-XL-V4',
|
111 |
'Raelina/Raehoshi-illust-XL',
|
112 |
'Raelina/Raehoshi-illust-xl-2',
|
|
|
113 |
"camenduru/FLUX.1-dev-diffusers",
|
114 |
"black-forest-labs/FLUX.1-schnell",
|
115 |
"sayakpaul/FLUX.1-merged",
|
|
|
110 |
'Raelina/Raemu-XL-V4',
|
111 |
'Raelina/Raehoshi-illust-XL',
|
112 |
'Raelina/Raehoshi-illust-xl-2',
|
113 |
+
'Raelina/Raehoshi-Illust-XL-2.1',
|
114 |
"camenduru/FLUX.1-dev-diffusers",
|
115 |
"black-forest-labs/FLUX.1-schnell",
|
116 |
"sayakpaul/FLUX.1-merged",
|
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
git+https://github.com/R3gm/stablepy.git@
|
2 |
torch==2.2.0
|
3 |
gdown
|
4 |
opencv-python
|
|
|
1 |
+
git+https://github.com/R3gm/stablepy.git@ed51089 # -b refactor_sampler_fix
|
2 |
torch==2.2.0
|
3 |
gdown
|
4 |
opencv-python
|