derek-thomas
commited on
Commit
·
a79f7cd
1
Parent(s):
d791b3c
Make output prettier
Browse files
app.py
CHANGED
|
@@ -100,11 +100,10 @@ with gr.Blocks() as demo:
|
|
| 100 |
with gr.Tab("Analysis"):
|
| 101 |
with gr.Row():
|
| 102 |
markdown_output = gr.Markdown()
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
files_output = gr.Files(label="Analysis Files")
|
| 108 |
|
| 109 |
btn_plot.click(anki_optimizer,
|
| 110 |
inputs=[file, timezone, next_day_starts_at, revlog_start_date, requestRetention],
|
|
|
|
| 100 |
with gr.Tab("Analysis"):
|
| 101 |
with gr.Row():
|
| 102 |
markdown_output = gr.Markdown()
|
| 103 |
+
with gr.Column():
|
| 104 |
+
df_output = gr.DataFrame()
|
| 105 |
+
plot_output = gr.Plot()
|
| 106 |
+
files_output = gr.Files(label="Analysis Files")
|
|
|
|
| 107 |
|
| 108 |
btn_plot.click(anki_optimizer,
|
| 109 |
inputs=[file, timezone, next_day_starts_at, revlog_start_date, requestRetention],
|