Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -105,18 +105,18 @@ style_loras = ["Simple_Sketch", "Text_Poster", "Vector_Style", "None"]
|
|
105 |
|
106 |
# Example data
|
107 |
single_examples = [
|
108 |
-
["A SKS in the library", Image.open("./test_imgs/subject1.png"), None,
|
109 |
["In a picturesque village, a narrow cobblestone street with rustic stone buildings, colorful blinds, and lush green spaces, a cartoon man drawn with simple lines and solid colors stands in the foreground, wearing a red shirt, beige work pants, and brown shoes, carrying a strap on his shoulder. The scene features warm and enticing colors, a pleasant fusion of nature and architecture, and the camera's perspective on the street clearly shows the charming and quaint environment., Integrating elements of reality and cartoon.", None, Image.open("./test_imgs/spatial1.png"), 1024, 1024, 1, "pose", "Vector_Style"],
|
110 |
]
|
111 |
multi_examples = [
|
112 |
-
["A SKS on the car", Image.open("./test_imgs/subject2.png"), Image.open("./test_imgs/spatial2.png"),
|
113 |
]
|
114 |
|
115 |
|
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():
|
|
|
105 |
|
106 |
# Example data
|
107 |
single_examples = [
|
108 |
+
["A SKS in the library", Image.open("./test_imgs/subject1.png"), None, 768, 768, 5, "subject", "None"],
|
109 |
["In a picturesque village, a narrow cobblestone street with rustic stone buildings, colorful blinds, and lush green spaces, a cartoon man drawn with simple lines and solid colors stands in the foreground, wearing a red shirt, beige work pants, and brown shoes, carrying a strap on his shoulder. The scene features warm and enticing colors, a pleasant fusion of nature and architecture, and the camera's perspective on the street clearly shows the charming and quaint environment., Integrating elements of reality and cartoon.", None, Image.open("./test_imgs/spatial1.png"), 1024, 1024, 1, "pose", "Vector_Style"],
|
110 |
]
|
111 |
multi_examples = [
|
112 |
+
["A SKS on the car", Image.open("./test_imgs/subject2.png"), Image.open("./test_imgs/spatial2.png"), 768, 768, 7],
|
113 |
]
|
114 |
|
115 |
|
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 )")
|
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=960, step=64, label="Height", value=768)
|
128 |
+
width = gr.Slider(minimum=256, maximum=960, 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=960, step=64, label="Height", value=768)
|
154 |
+
multi_width = gr.Slider(minimum=256, maximum=960, 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():
|