Spaces:
Sleeping
Sleeping
File size: 757 Bytes
abdd8db 6716c4c abdd8db 6716c4c abdd8db 6716c4c | 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 | ---
title: FoodExtract Fine-tuned LLM Structued Data Extractor
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 and output will be a formatted string such as the following:
```
food_or_drink: 1
tags: fi, re
foods: tacos, milk, red apple, pineapple, cherries, fried chicken, steak, mayonnaise
drinks: iced latte, matcha latte
```
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'}
```
"""
|