Spaces:
Sleeping
Sleeping
deleted unnecessary launch.py for hf space
Browse files- .gitignore +4 -1
- app.py +0 -8
- launch.py +0 -8
.gitignore
CHANGED
@@ -16,4 +16,7 @@ venv/
|
|
16 |
*.pt
|
17 |
|
18 |
# Gradio session files
|
19 |
-
gradio_cached_examples/
|
|
|
|
|
|
|
|
16 |
*.pt
|
17 |
|
18 |
# Gradio session files
|
19 |
+
gradio_cached_examples/
|
20 |
+
|
21 |
+
# Ignore downloaded datasets
|
22 |
+
data/
|
app.py
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
# entrpoint for HuggingFace Space
|
2 |
-
|
3 |
-
import sys
|
4 |
-
sys.path.append('.')
|
5 |
-
|
6 |
-
from app.gradio_app import demo
|
7 |
-
|
8 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
launch.py
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
# entrpoint for HuggingFace Space
|
2 |
-
|
3 |
-
import sys
|
4 |
-
sys.path.append('.')
|
5 |
-
|
6 |
-
from app.gradio_app import demo
|
7 |
-
|
8 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|