Update app.py
Browse files
app.py
CHANGED
@@ -187,17 +187,6 @@ submit_button.click(
|
|
187 |
with demo:
|
188 |
gr.HTML(TITLE)
|
189 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
190 |
-
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
191 |
-
with gr.TabItem("Tab 1", id=0): # Label: "Tab 1"
|
192 |
-
# Content for Tab 1 goes here
|
193 |
-
with gr.TabItem("Tab 2", id=1): # Label: "Tab 2"
|
194 |
-
# Content for Tab 2 goes here
|
195 |
-
with gr.TabItem("Tab 1", id=0):
|
196 |
-
gr.Markdown("This is the content of Tab 1")
|
197 |
-
gr.Image("path/to/image.jpg")
|
198 |
-
|
199 |
-
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
200 |
-
|
201 |
# Your model submission form here
|
202 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
203 |
# ... (your tabs content)
|
|
|
187 |
with demo:
|
188 |
gr.HTML(TITLE)
|
189 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
# Your model submission form here
|
191 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
192 |
# ... (your tabs content)
|