Spaces:
Build error
Build error
Commit
·
a1da9a2
1
Parent(s):
88ea4dc
Update app.py
Browse files
app.py
CHANGED
@@ -23,13 +23,13 @@ class Model:
|
|
23 |
self.pipe_i2i = None
|
24 |
|
25 |
models = [
|
|
|
26 |
Model("Vivid Watercolors", "Evel/VividWatercolors", "watercolor style"),
|
27 |
Model("Loving Vincent (Van Gogh)", "dallinmackay/Van-Gogh-diffusion", "lvngvncnt "),
|
28 |
Model("Comic Diffusion", "ogkalu/Comic-Diffusion", "Comic Book Styles"),
|
29 |
Model("Marvel What If", "ItsJayQz/Marvel_WhatIf_Diffusion", ""),
|
30 |
Model("Oil Painter", "Gourieff/p-AI-nter_v0.2", "Use the token 'oil painting'"),
|
31 |
Model("Elayaraja Oil", "apurik-parv/ilayaraja", "Use the token 'iraja'"),
|
32 |
-
Model("DnD Cover Art", "sd-dreambooth-library/dndcoverart-v1", "Use the token 'dndcoverart'"),
|
33 |
Model("Deliberate civitai", "XpucT/Deliberate", "none"),
|
34 |
Model("Experience V8 civitai", "n0madic/experience-v8", "none"),
|
35 |
Model("A-Zovya RPG Artist Tools civitai", "danbrown/A-to-Zovya-RPG-v1-5", "none"),
|
@@ -298,8 +298,8 @@ with gr.Blocks(css="style.css") as demo:
|
|
298 |
steps = gr.Slider(label="Steps", value=current_steps, minimum=2, maximum=75, step=1)
|
299 |
|
300 |
with gr.Row():
|
301 |
-
width = gr.Slider(label="Width", value=512, minimum=64, maximum=
|
302 |
-
height = gr.Slider(label="Height", value=512, minimum=64, maximum=
|
303 |
|
304 |
seed = gr.Slider(0, 2147483647, label='Seed (0 = random)', value=0, step=1)
|
305 |
|
|
|
23 |
self.pipe_i2i = None
|
24 |
|
25 |
models = [
|
26 |
+
Model("DnD Cover Art", "sd-dreambooth-library/dndcoverart-v1", "Use the token 'dndcoverart'"),
|
27 |
Model("Vivid Watercolors", "Evel/VividWatercolors", "watercolor style"),
|
28 |
Model("Loving Vincent (Van Gogh)", "dallinmackay/Van-Gogh-diffusion", "lvngvncnt "),
|
29 |
Model("Comic Diffusion", "ogkalu/Comic-Diffusion", "Comic Book Styles"),
|
30 |
Model("Marvel What If", "ItsJayQz/Marvel_WhatIf_Diffusion", ""),
|
31 |
Model("Oil Painter", "Gourieff/p-AI-nter_v0.2", "Use the token 'oil painting'"),
|
32 |
Model("Elayaraja Oil", "apurik-parv/ilayaraja", "Use the token 'iraja'"),
|
|
|
33 |
Model("Deliberate civitai", "XpucT/Deliberate", "none"),
|
34 |
Model("Experience V8 civitai", "n0madic/experience-v8", "none"),
|
35 |
Model("A-Zovya RPG Artist Tools civitai", "danbrown/A-to-Zovya-RPG-v1-5", "none"),
|
|
|
298 |
steps = gr.Slider(label="Steps", value=current_steps, minimum=2, maximum=75, step=1)
|
299 |
|
300 |
with gr.Row():
|
301 |
+
width = gr.Slider(label="Width", value=512, minimum=64, maximum=1024, step=8)
|
302 |
+
height = gr.Slider(label="Height", value=512, minimum=64, maximum=1024, step=8)
|
303 |
|
304 |
seed = gr.Slider(0, 2147483647, label='Seed (0 = random)', value=0, step=1)
|
305 |
|