Spaces:
Runtime error
Runtime error
cyberosa
commited on
Commit
·
35db90a
1
Parent(s):
21b90bb
forcing start script
Browse files
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
import gradio as gr
|
| 3 |
import pandas as pd
|
| 4 |
from glob import glob
|
|
@@ -13,7 +13,6 @@ from tabs.faq import (
|
|
| 13 |
from tabs.howto_benchmark import how_to_run
|
| 14 |
from tabs.run_benchmark import run_benchmark_main
|
| 15 |
|
| 16 |
-
start()
|
| 17 |
demo = gr.Blocks()
|
| 18 |
|
| 19 |
|
|
|
|
| 1 |
+
import start
|
| 2 |
import gradio as gr
|
| 3 |
import pandas as pd
|
| 4 |
from glob import glob
|
|
|
|
| 13 |
from tabs.howto_benchmark import how_to_run
|
| 14 |
from tabs.run_benchmark import run_benchmark_main
|
| 15 |
|
|
|
|
| 16 |
demo = gr.Blocks()
|
| 17 |
|
| 18 |
|
start.py
CHANGED
|
@@ -76,3 +76,6 @@ def start():
|
|
| 76 |
|
| 77 |
# Download the dataset
|
| 78 |
download_dataset()
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
# Download the dataset
|
| 78 |
download_dataset()
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
start()
|