Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -94,7 +94,8 @@ css = """
|
|
94 |
}
|
95 |
"""
|
96 |
|
97 |
-
|
|
|
98 |
with gr.Row():
|
99 |
with gr.Column():
|
100 |
gr.Markdown("# Disney Pixar AI Poster Generator")
|
@@ -104,15 +105,15 @@ with gr.Blocks(css=css) as demo:
|
|
104 |
with gr.Column(scale=2):
|
105 |
prompt = gr.Textbox("space warrior, beautiful, female, ultrarealistic, soft lighting, 8k", placeholder="Prompt", show_label=False, lines=3)
|
106 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3, value="3d, cartoon, anime, (deformed eyes, nose, ears, nose), bad anatomy, ugly")
|
107 |
-
text_button = gr.Button("Generate", variant='primary',
|
108 |
|
109 |
with gr.Column(scale=4):
|
110 |
-
image_output = gr.Image(value="https://cdn-uploads.huggingface.co/production/uploads/noauth/XWJyh9DhMGXrzyRJk7SfP.png", label="Generated Image")
|
111 |
|
112 |
with gr.Row():
|
113 |
with gr.Column(scale=2):
|
114 |
-
model = gr.Dropdown(interactive=True, value="sd_xl_base_1.0.safetensors [be9edd61]", show_label=True, label="Stable Diffusion Checkpoint",
|
115 |
-
sampler = gr.Dropdown(value="DPM++ 2M Karras", show_label=True, label="Sampling Method",
|
116 |
steps = gr.Slider(label="Sampling Steps", minimum=1, maximum=25, value=20, step=1)
|
117 |
cfg_scale = gr.Slider(label="CFG Scale", minimum=1, maximum=20, value=7, step=1)
|
118 |
seed = gr.Number(label="Seed", value=-1)
|
@@ -124,6 +125,5 @@ with gr.Blocks(css=css) as demo:
|
|
124 |
batch_count = gr.Slider(label="Batch Count", maximum=1, value=1)
|
125 |
gr.Markdown("*Resolution Maximum: 1MP (1048576 px)*")
|
126 |
|
127 |
-
|
128 |
-
|
129 |
-
demo.queue(concurrency_count=24, max_size=32, api_open=False).launch(max_threads=128)
|
|
|
94 |
}
|
95 |
"""
|
96 |
|
97 |
+
# Define the Gradio interface
|
98 |
+
with gr.Blocks() as demo:
|
99 |
with gr.Row():
|
100 |
with gr.Column():
|
101 |
gr.Markdown("# Disney Pixar AI Poster Generator")
|
|
|
105 |
with gr.Column(scale=2):
|
106 |
prompt = gr.Textbox("space warrior, beautiful, female, ultrarealistic, soft lighting, 8k", placeholder="Prompt", show_label=False, lines=3)
|
107 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3, value="3d, cartoon, anime, (deformed eyes, nose, ears, nose), bad anatomy, ugly")
|
108 |
+
text_button = gr.Button("Generate", variant='primary', style={"min-width": "100%"})
|
109 |
|
110 |
with gr.Column(scale=4):
|
111 |
+
image_output = gr.Image(value="https://cdn-uploads.huggingface.co/production/uploads/noauth/XWJyh9DhMGXrzyRJk7SfP.png", label="Generated Image", style={"width": "100%", "height": "auto"})
|
112 |
|
113 |
with gr.Row():
|
114 |
with gr.Column(scale=2):
|
115 |
+
model = gr.Dropdown(interactive=True, value="sd_xl_base_1.0.safetensors [be9edd61]", show_label=True, label="Stable Diffusion Checkpoint", style={"min-width": "100%"})
|
116 |
+
sampler = gr.Dropdown(value="DPM++ 2M Karras", show_label=True, label="Sampling Method", style={"min-width": "100%"})
|
117 |
steps = gr.Slider(label="Sampling Steps", minimum=1, maximum=25, value=20, step=1)
|
118 |
cfg_scale = gr.Slider(label="CFG Scale", minimum=1, maximum=20, value=7, step=1)
|
119 |
seed = gr.Number(label="Seed", value=-1)
|
|
|
125 |
batch_count = gr.Slider(label="Batch Count", maximum=1, value=1)
|
126 |
gr.Markdown("*Resolution Maximum: 1MP (1048576 px)*")
|
127 |
|
128 |
+
# Launch the Gradio interface
|
129 |
+
demo.launch()
|
|