Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,10 @@ def flip_image(x):
|
|
34 |
return np.fliplr(x)
|
35 |
|
36 |
def clear():
|
37 |
-
return None
|
|
|
|
|
|
|
38 |
|
39 |
def query(lora_id, prompt, is_negative=False, steps=28, cfg_scale=3.5, sampler="DPM++ 2M Karras", seed=-1, strength=100, width=896, height=1152):
|
40 |
if prompt == "" or prompt == None:
|
@@ -168,7 +171,7 @@ css = """
|
|
168 |
with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
|
169 |
gr.HTML("<center><h6>🎨 FLUX.1-Dev with LoRA 🇬🇧</h6></center>")
|
170 |
with gr.Tabs() as tabs:
|
171 |
-
with gr.TabItem(label="Image To Prompt", visible=True):
|
172 |
with gr.Row():
|
173 |
with gr.Column():
|
174 |
input_img = gr.Image(label="Input Picture 🖼️",height=320,type="filepath")
|
@@ -180,8 +183,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
|
|
180 |
|
181 |
submit_btn.click(feifeichat, [input_img], [output_text])
|
182 |
|
183 |
-
with gr.TabItem(label="Text to Image", visible=True):
|
184 |
-
|
185 |
with gr.Column(elem_id="app-container"):
|
186 |
with gr.Row():
|
187 |
with gr.Column(elem_id="prompt-container"):
|
@@ -254,7 +256,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
|
|
254 |
|
255 |
text_button.click(query, inputs=[custom_lora, text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=[image_output, seed_output])
|
256 |
|
257 |
-
with gr.TabItem(label="Flip Image", visible=True):
|
258 |
with gr.Row():
|
259 |
image_input = gr.Image()
|
260 |
image_output = gr.Image(format="png")
|
@@ -262,7 +264,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
|
|
262 |
image_button = gr.Button("Run", variant='primary')
|
263 |
image_button.click(flip_image, inputs=image_input, outputs=image_output, concurrency_limit=2)
|
264 |
|
265 |
-
with gr.TabItem(label="Tips", visible=True):
|
266 |
with gr.Row():
|
267 |
gr.Markdown(
|
268 |
"""
|
|
|
34 |
return np.fliplr(x)
|
35 |
|
36 |
def clear():
|
37 |
+
return None
|
38 |
+
|
39 |
+
def change_tab():
|
40 |
+
return gr.Tabs.update(selected=0)
|
41 |
|
42 |
def query(lora_id, prompt, is_negative=False, steps=28, cfg_scale=3.5, sampler="DPM++ 2M Karras", seed=-1, strength=100, width=896, height=1152):
|
43 |
if prompt == "" or prompt == None:
|
|
|
171 |
with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
|
172 |
gr.HTML("<center><h6>🎨 FLUX.1-Dev with LoRA 🇬🇧</h6></center>")
|
173 |
with gr.Tabs() as tabs:
|
174 |
+
with gr.TabItem(label="Image To Prompt", visible=True, id=0):
|
175 |
with gr.Row():
|
176 |
with gr.Column():
|
177 |
input_img = gr.Image(label="Input Picture 🖼️",height=320,type="filepath")
|
|
|
183 |
|
184 |
submit_btn.click(feifeichat, [input_img], [output_text])
|
185 |
|
186 |
+
with gr.TabItem(label="Text to Image", visible=True, id=1):
|
|
|
187 |
with gr.Column(elem_id="app-container"):
|
188 |
with gr.Row():
|
189 |
with gr.Column(elem_id="prompt-container"):
|
|
|
256 |
|
257 |
text_button.click(query, inputs=[custom_lora, text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=[image_output, seed_output])
|
258 |
|
259 |
+
with gr.TabItem(label="Flip Image", visible=True, id=2):
|
260 |
with gr.Row():
|
261 |
image_input = gr.Image()
|
262 |
image_output = gr.Image(format="png")
|
|
|
264 |
image_button = gr.Button("Run", variant='primary')
|
265 |
image_button.click(flip_image, inputs=image_input, outputs=image_output, concurrency_limit=2)
|
266 |
|
267 |
+
with gr.TabItem(label="Tips", visible=True, id=3):
|
268 |
with gr.Row():
|
269 |
gr.Markdown(
|
270 |
"""
|