matteo
Update README.md
5aedc32
|
raw
history blame
438 Bytes
---
language:
- it
pipeline_tag: translation
---
To initialize the model:
```python
from transformers import MBartForConditionalGeneration
model = MBartForConditionalGeneration.from_pretrained("facebook/mbart-large-50", output_hidden_states=True)
```
To generate text using the model:
```python
input_ids = tokenizer.encode("Input text", return_tensors="pt")
output = model.generate(input_ids)
```