denocris commited on
Commit
9ff89ad
1 Parent(s): 66fd868

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Chef BERTo
2
+
3
+ **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.
4
+
5
+ # Usage
6
+
7
+ ```python
8
+ from transformers import AutoModel, AutoTokenizer
9
+ model_name = "vinhood/chefberto-italian-cased"
10
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
11
+ model = AutoModel.from_pretrained(model_name)
12
+ ```