Spaces:
Sleeping
Sleeping
change urls to local files and updated app.py accordingly
Browse files- .gitattributes +1 -0
- app.py +3 -3
- examples/kimchi.jpg +3 -0
- examples/mapo_tofu.jpg +3 -0
- examples/paella.jpg +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
app.py
CHANGED
|
@@ -146,9 +146,9 @@ def process_and_predict(file_path: str):
|
|
| 146 |
# UI
|
| 147 |
# -----------------------------
|
| 148 |
EXAMPLES = [
|
| 149 |
-
["
|
| 150 |
-
["
|
| 151 |
-
["
|
| 152 |
]
|
| 153 |
|
| 154 |
with gr.Blocks() as demo:
|
|
|
|
| 146 |
# UI
|
| 147 |
# -----------------------------
|
| 148 |
EXAMPLES = [
|
| 149 |
+
["examples/paella.jpg"],
|
| 150 |
+
["examples/mapo_tofu.jpg"],
|
| 151 |
+
["examples/kimchi.jpg"],
|
| 152 |
]
|
| 153 |
|
| 154 |
with gr.Blocks() as demo:
|
examples/kimchi.jpg
ADDED
|
Git LFS Details
|
examples/mapo_tofu.jpg
ADDED
|
Git LFS Details
|
examples/paella.jpg
ADDED
|
Git LFS Details
|