File size: 472 Bytes
ce15bc3 9ff89ad |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
---
language: it
license: mit
---
# Chef BERTo
**chefberto-italian-cased** is a BERT model obtained by MLM adaptive-tuning [**bert-base-italian-xxl-cased**](https://huggingface.co./dbmdz/bert-base-italian-xxl-cased) model on Italian cooking recipes.
# Usage
```python
from transformers import AutoModel, AutoTokenizer
model_name = "vinhood/chefberto-italian-cased"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModel.from_pretrained(model_name)
``` |