Spaces:
Sleeping
Sleeping
File size: 1,701 Bytes
d36d389 c92bfda d36d389 c92bfda d36d389 c92bfda | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | ---
title: FoodExtract Fine-tuned LLM Structued Data Extractor v1
emoji: πβ‘οΈπ
colorFrom: green
colorTo: blue
sdk: gradio
app_file: app.py
pinned: false
license: apache-2.0
---
"""
Fine-tuned Gemma 3 270M to extract food and drink items from raw text.
Input can be any form of real text (mostly focused on shorter image caption-like texts):
```
A truly eclectic and mouth-watering feast is laid out on the table, featuring savory favorites like crispy fried chicken,
a perfectly seared steak, and loaded tacos, complete with a side of creamy mayonnaise. To balance the heavier mains,
a vibrant assortment of fresh fruit sits nearby, including a crisp red apple, a tropical pineapple, and a scattering of
sweet cherries. Thirst-quenching options complete this extravagant spread, with a classic iced latte, an earthy matcha latte,
and a simple, refreshing glass of milk ready to be enjoyed.
```
And output will be a formatted string such as the following:
```
food_or_drink: 1
tags: fi, re
foods: tacos,red apple, pineapple, cherries, fried chicken, steak, mayonnaise
drinks: iced latte, matcha latte, milk
```
The tags map to the following items:
```
tags_dict = {'np': 'nutrition_panel',
'il': 'ingredient list',
'me': 'menu',
're': 'recipe',
'fi': 'food_items',
'di': 'drink_items',
'fa': 'food_advertistment',
'fp': 'food_packaging'}
```
* You can see walkthrough step by step code details at: https://www.learnhuggingface.com/notebooks/hugging_face_llm_full_fine_tune_tutorial
* See the fine-tuning dataset: https://huggingface.co/datasets/mrdbourke/FoodExtract-1k
* See the fine-tuned model: https://huggingface.co/mrdbourke/FoodExtract-gemma-3-270m-fine-tune-v1
"""
|