Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -116,7 +116,7 @@ multi_examples = [
|
|
116 |
# Create the Gradio Blocks interface
|
117 |
with gr.Blocks() as demo:
|
118 |
gr.Markdown("# Image Generation with EasyControl")
|
119 |
-
gr.Markdown("Generate images using EasyControl with different control types and style LoRAs.(
|
120 |
|
121 |
with gr.Tab("Single Condition Generation"):
|
122 |
with gr.Row():
|
@@ -124,8 +124,8 @@ with gr.Blocks() as demo:
|
|
124 |
prompt = gr.Textbox(label="Prompt")
|
125 |
subject_img = gr.Image(label="Subject Image", type="pil") # 上传图像文件
|
126 |
spatial_img = gr.Image(label="Spatial Image", type="pil") # 上传图像文件
|
127 |
-
height = gr.Slider(minimum=256, maximum=
|
128 |
-
width = gr.Slider(minimum=256, maximum=
|
129 |
seed = gr.Number(label="Seed", value=42)
|
130 |
control_type = gr.Dropdown(choices=control_types, label="Control Type")
|
131 |
style_lora = gr.Dropdown(choices=style_loras, label="Style LoRA")
|
@@ -150,8 +150,8 @@ with gr.Blocks() as demo:
|
|
150 |
multi_prompt = gr.Textbox(label="Prompt")
|
151 |
multi_subject_img = gr.Image(label="Subject Image", type="pil") # 上传图像文件
|
152 |
multi_spatial_img = gr.Image(label="Spatial Image", type="pil") # 上传图像文件
|
153 |
-
multi_height = gr.Slider(minimum=256, maximum=
|
154 |
-
multi_width = gr.Slider(minimum=256, maximum=
|
155 |
multi_seed = gr.Number(label="Seed", value=42)
|
156 |
multi_generate_btn = gr.Button("Generate Image")
|
157 |
with gr.Column():
|
|
|
116 |
# Create the Gradio Blocks interface
|
117 |
with gr.Blocks() as demo:
|
118 |
gr.Markdown("# Image Generation with EasyControl")
|
119 |
+
gr.Markdown("Generate images using EasyControl with different control types and style LoRAs.(Due to hardware constraints, only low-resolution images can be generated. For high-resolution (1024+), please set up your own environment.)")
|
120 |
|
121 |
with gr.Tab("Single Condition Generation"):
|
122 |
with gr.Row():
|
|
|
124 |
prompt = gr.Textbox(label="Prompt")
|
125 |
subject_img = gr.Image(label="Subject Image", type="pil") # 上传图像文件
|
126 |
spatial_img = gr.Image(label="Spatial Image", type="pil") # 上传图像文件
|
127 |
+
height = gr.Slider(minimum=256, maximum=896, step=64, label="Height", value=768)
|
128 |
+
width = gr.Slider(minimum=256, maximum=896, step=64, label="Width", value=768)
|
129 |
seed = gr.Number(label="Seed", value=42)
|
130 |
control_type = gr.Dropdown(choices=control_types, label="Control Type")
|
131 |
style_lora = gr.Dropdown(choices=style_loras, label="Style LoRA")
|
|
|
150 |
multi_prompt = gr.Textbox(label="Prompt")
|
151 |
multi_subject_img = gr.Image(label="Subject Image", type="pil") # 上传图像文件
|
152 |
multi_spatial_img = gr.Image(label="Spatial Image", type="pil") # 上传图像文件
|
153 |
+
multi_height = gr.Slider(minimum=256, maximum=896, step=64, label="Height", value=768)
|
154 |
+
multi_width = gr.Slider(minimum=256, maximum=896, step=64, label="Width", value=768)
|
155 |
multi_seed = gr.Number(label="Seed", value=42)
|
156 |
multi_generate_btn = gr.Button("Generate Image")
|
157 |
with gr.Column():
|