Spaces:
Running
on
Zero
Running
on
Zero
gokaygokay
commited on
Commit
•
efb77d1
1
Parent(s):
a963aec
Update app.py
Browse files
app.py
CHANGED
@@ -24,9 +24,9 @@ with gr.Blocks(css=css) as demo:
|
|
24 |
with gr.Tab(label="SD3 Llava Llama3 Captioner"):
|
25 |
with gr.Row():
|
26 |
with gr.Column():
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
|
31 |
gr.Examples(
|
32 |
[["assets/image1.png"], ["assets/image2.PNG"], ["assets/image3.jpg"]],
|
|
|
24 |
with gr.Tab(label="SD3 Llava Llama3 Captioner"):
|
25 |
with gr.Row():
|
26 |
with gr.Column():
|
27 |
+
input_img = gr.Image(label="Input Picture")
|
28 |
+
submit_btn = gr.Button(value="Submit")
|
29 |
+
output = gr.Text(label="Caption")
|
30 |
|
31 |
gr.Examples(
|
32 |
[["assets/image1.png"], ["assets/image2.PNG"], ["assets/image3.jpg"]],
|