Update app.py
Browse files
app.py
CHANGED
@@ -207,12 +207,12 @@ def about_page():
|
|
207 |
return content
|
208 |
|
209 |
|
210 |
-
with gr.Blocks() as demo:
|
211 |
with gr.Tabs():
|
212 |
with gr.TabItem("Home"):
|
213 |
df_state = gr.State()
|
214 |
|
215 |
-
gr.Image("/content/chronos-logo.png", interactive=False)
|
216 |
home_output = gr.Markdown(value=home_page(), label="Playground")
|
217 |
|
218 |
gr.Markdown("## Step 1: Historical/Training Data (currently supports *.csv only)")
|
@@ -300,7 +300,7 @@ with gr.Blocks() as demo:
|
|
300 |
with gr.TabItem("About Tops"):
|
301 |
df_state = gr.State()
|
302 |
|
303 |
-
gr.Image("/content/chronos-logo.png", interactive=False)
|
304 |
about_output = gr.Markdown(value=about_page(), label="About Tops")
|
305 |
|
306 |
|
|
|
207 |
return content
|
208 |
|
209 |
|
210 |
+
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
211 |
with gr.Tabs():
|
212 |
with gr.TabItem("Home"):
|
213 |
df_state = gr.State()
|
214 |
|
215 |
+
# gr.Image("/content/chronos-logo.png", interactive=False)
|
216 |
home_output = gr.Markdown(value=home_page(), label="Playground")
|
217 |
|
218 |
gr.Markdown("## Step 1: Historical/Training Data (currently supports *.csv only)")
|
|
|
300 |
with gr.TabItem("About Tops"):
|
301 |
df_state = gr.State()
|
302 |
|
303 |
+
# gr.Image("/content/chronos-logo.png", interactive=False)
|
304 |
about_output = gr.Markdown(value=about_page(), label="About Tops")
|
305 |
|
306 |
|