Summarization
Transformers
PyTorch
TensorBoard
mbart
text2text-generation
Mbart
seq2seq
es
abstractive summarization
Generated from Trainer
Instructions to use eslamxm/MBART-finetuned-Spanish with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use eslamxm/MBART-finetuned-Spanish with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="eslamxm/MBART-finetuned-Spanish")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("eslamxm/MBART-finetuned-Spanish") model = AutoModelForSeq2SeqLM.from_pretrained("eslamxm/MBART-finetuned-Spanish", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#2
by librarian-bot - opened
README.md
CHANGED
|
@@ -8,6 +8,7 @@ tags:
|
|
| 8 |
- generated_from_trainer
|
| 9 |
datasets:
|
| 10 |
- wiki_lingua
|
|
|
|
| 11 |
model-index:
|
| 12 |
- name: MBART-finetuned-Spanish
|
| 13 |
results: []
|
|
|
|
| 8 |
- generated_from_trainer
|
| 9 |
datasets:
|
| 10 |
- wiki_lingua
|
| 11 |
+
base_model: facebook/mbart-large-50
|
| 12 |
model-index:
|
| 13 |
- name: MBART-finetuned-Spanish
|
| 14 |
results: []
|