Upload 3 files
Browse files- README.md +1 -1
- app.py +1 -1
- requirements.txt +2 -1
README.md
CHANGED
|
@@ -4,7 +4,7 @@ emoji: 🍳
|
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
| 10 |
license: mit
|
|
|
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 5.9.1
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
| 10 |
license: mit
|
app.py
CHANGED
|
@@ -262,7 +262,7 @@ with gr.Blocks(css=CSS, title="Mise — AI Cooking Studio", theme=gr.themes.Soft
|
|
| 262 |
|
| 263 |
with gr.Tab("📊 Kitchen Dashboard"):
|
| 264 |
gr.Markdown("Exploratory view of the 10,000-recipe synthetic dataset (Part 2 EDA).")
|
| 265 |
-
gr.Plot(dashboard)
|
| 266 |
|
| 267 |
gr.HTML("<p style='text-align:center;color:#b9a894;font-size:12px;margin-top:14px;'>"
|
| 268 |
"Mise · synthetic recipe dataset + 3-model embedding benchmark + FAISS + fine-tuned generator · Reichman University</p>")
|
|
|
|
| 262 |
|
| 263 |
with gr.Tab("📊 Kitchen Dashboard"):
|
| 264 |
gr.Markdown("Exploratory view of the 10,000-recipe synthetic dataset (Part 2 EDA).")
|
| 265 |
+
gr.Plot(value=dashboard())
|
| 266 |
|
| 267 |
gr.HTML("<p style='text-align:center;color:#b9a894;font-size:12px;margin-top:14px;'>"
|
| 268 |
"Mise · synthetic recipe dataset + 3-model embedding benchmark + FAISS + fine-tuned generator · Reichman University</p>")
|
requirements.txt
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
|
|
| 1 |
spaces
|
| 2 |
sentence-transformers
|
| 3 |
faiss-cpu
|
| 4 |
-
huggingface_hub
|
| 5 |
pandas
|
| 6 |
numpy
|
| 7 |
matplotlib
|
|
|
|
| 1 |
+
gradio==5.9.1
|
| 2 |
spaces
|
| 3 |
sentence-transformers
|
| 4 |
faiss-cpu
|
| 5 |
+
huggingface_hub
|
| 6 |
pandas
|
| 7 |
numpy
|
| 8 |
matplotlib
|