cyberosa
commited on
Commit
·
21b90bb
1
Parent(s):
390e4f6
launching start from the app file
Browse files
app.py
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
import pandas as pd
|
3 |
from glob import glob
|
@@ -12,7 +13,7 @@ from tabs.faq import (
|
|
12 |
from tabs.howto_benchmark import how_to_run
|
13 |
from tabs.run_benchmark import run_benchmark_main
|
14 |
|
15 |
-
|
16 |
demo = gr.Blocks()
|
17 |
|
18 |
|
|
|
1 |
+
from start 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 |
+
start()
|
17 |
demo = gr.Blocks()
|
18 |
|
19 |
|
start.py
CHANGED
@@ -76,6 +76,3 @@ def start():
|
|
76 |
|
77 |
# Download the dataset
|
78 |
download_dataset()
|
79 |
-
|
80 |
-
|
81 |
-
start()
|
|
|
76 |
|
77 |
# Download the dataset
|
78 |
download_dataset()
|
|
|
|
|
|