EdinburghNLP/xsum
Viewer • Updated • 227k • 16k • 153
How to use ssiyer/mt5-small-finetuned-amazon-en-es 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="ssiyer/mt5-small-finetuned-amazon-en-es") # Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("ssiyer/mt5-small-finetuned-amazon-en-es")
model = AutoModelForSeq2SeqLM.from_pretrained("ssiyer/mt5-small-finetuned-amazon-en-es", device_map="auto")This model is a fine-tuned version of google/mt5-small on the xsum dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum |
|---|---|---|---|---|---|---|---|
| 18.5949 | 1.0 | 50 | 8.8110 | 0.0298 | 0.0 | 0.0298 | 0.0298 |
| 10.7742 | 2.0 | 100 | 5.1285 | 0.087 | 0.0087 | 0.0805 | 0.0796 |
| 7.6938 | 3.0 | 150 | 4.3645 | 0.0684 | 0.0 | 0.0579 | 0.0615 |
| 6.3393 | 4.0 | 200 | 4.0164 | 0.035 | 0.0 | 0.0355 | 0.035 |
| 5.9075 | 5.0 | 250 | 3.7881 | 0.0579 | 0.0065 | 0.051 | 0.0528 |
| 5.7394 | 6.0 | 300 | 3.6971 | 0.0749 | 0.0226 | 0.0733 | 0.0733 |
| 5.4246 | 7.0 | 350 | 3.6652 | 0.0749 | 0.0226 | 0.0733 | 0.0733 |
| 5.2963 | 8.0 | 400 | 3.6525 | 0.0899 | 0.0226 | 0.0821 | 0.0807 |
Base model
google/mt5-small