RobertoBarrosoLuque commited on
Commit
f5a2b96
Β·
1 Parent(s): b32f568

Update with notebook

Browse files
Files changed (1) hide show
  1. src/app.py +27 -8
src/app.py CHANGED
@@ -335,14 +335,33 @@ def create_demo_interface():
335
  show_label=False,
336
  )
337
 
338
- gr.Markdown(
339
- """
340
- **Key Findings:**
341
- - Qwen2.5-VL-72B-SFT achieves >95% accuracy on masterCategory
342
- - Fine-tuned model shows 18% improvement on subCategory vs base model
343
- - All models maintain >90% precision and recall on gender classification
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