Spaces:
Sleeping
Sleeping
RobertoBarrosoLuque
commited on
Commit
Β·
f5a2b96
1
Parent(s):
b32f568
Update with notebook
Browse files- src/app.py +27 -8
src/app.py
CHANGED
|
@@ -335,14 +335,33 @@ def create_demo_interface():
|
|
| 335 |
show_label=False,
|
| 336 |
)
|
| 337 |
|
| 338 |
-
|
| 339 |
-
|
| 340 |
-
|
| 341 |
-
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
|
| 345 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 346 |
|
| 347 |
return demo
|
| 348 |
|
|
|
|
| 335 |
show_label=False,
|
| 336 |
)
|
| 337 |
|
| 338 |
+
with gr.Row():
|
| 339 |
+
with gr.Column():
|
| 340 |
+
gr.Markdown(
|
| 341 |
+
"""
|
| 342 |
+
**Key Findings:**
|
| 343 |
+
- Qwen2.5-VL-72B-SFT achieves >95% accuracy on masterCategory
|
| 344 |
+
- Fine-tuned model shows 18% improvement on subCategory vs base model
|
| 345 |
+
- All models maintain >90% precision and recall on gender classification
|
| 346 |
+
"""
|
| 347 |
+
)
|
| 348 |
+
with gr.Column():
|
| 349 |
+
gr.Markdown(
|
| 350 |
+
"""
|
| 351 |
+
### π Want to Fine-Tune Your Own Model? π
|
| 352 |
+
|
| 353 |
+
Check out our comprehensive fine-tuning cookbook to learn how we built this model!
|
| 354 |
+
The notebook covers:
|
| 355 |
+
- Dataset preparation and exploration
|
| 356 |
+
- Data preprocessing for VLM fine-tuning
|
| 357 |
+
- Fine-tuning with Fireworks AI
|
| 358 |
+
- Model evaluation and deployment
|
| 359 |
+
|
| 360 |
+
**[π Open Fine-Tuning Notebook](../notebooks/01-eda-and-fine-tuning.ipynb)**
|
| 361 |
+
|
| 362 |
+
Perfect for adapting this approach to your own product catalog or domain-specific use case.
|
| 363 |
+
"""
|
| 364 |
+
)
|
| 365 |
|
| 366 |
return demo
|
| 367 |
|