SinclairWang
commited on
Commit
•
7a4cd37
1
Parent(s):
f84fc22
Update README.md
Browse files
README.md
CHANGED
@@ -39,7 +39,7 @@ including but not limited to fine-grained sentiment analysis (ABSA), product-rel
|
|
39 |
>>> model = AutoModelForSeq2SeqLM.from_pretrained("NUSTM/dutch-restaurant-mt5-small")
|
40 |
|
41 |
>>> input_ids = tokenizer(
|
42 |
-
... "
|
43 |
... ).input_ids # Batch size 1
|
44 |
>>> outputs = model(input_ids=input_ids)
|
45 |
```
|
|
|
39 |
>>> model = AutoModelForSeq2SeqLM.from_pretrained("NUSTM/dutch-restaurant-mt5-small")
|
40 |
|
41 |
>>> input_ids = tokenizer(
|
42 |
+
... "De pizza's hier zijn heerlijk!!!", return_tensors="pt"
|
43 |
... ).input_ids # Batch size 1
|
44 |
>>> outputs = model(input_ids=input_ids)
|
45 |
```
|