Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,3 @@
|
|
1 |
-
import os
|
2 |
-
os.system("pip uninstall -y gradio")
|
3 |
-
os.system("pip install gradio --upgrade")
|
4 |
import gradio as gr
|
5 |
import pandas as pd
|
6 |
|
@@ -18,4 +15,4 @@ file_path = "merged-averaged-model_timings_2.1.0_12.1_NVIDIA_A10G_False.csv"
|
|
18 |
html_table_output = display_csv(file_path)
|
19 |
|
20 |
# Create the Gradio interface
|
21 |
-
gr.Interface(fn=lambda: html_table_output, inputs=None, outputs=
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import pandas as pd
|
3 |
|
|
|
15 |
html_table_output = display_csv(file_path)
|
16 |
|
17 |
# Create the Gradio interface
|
18 |
+
gr.Interface(fn=lambda: html_table_output, inputs=None, outputs=html_table_output, title="CSV Viewer").launch()
|