abisee/cnn_dailymail
Viewer • Updated • 936k • 152k • 343
How to use Alred/bart-base-finetuned-summarization-cnn-ver3 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="Alred/bart-base-finetuned-summarization-cnn-ver3") # Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("Alred/bart-base-finetuned-summarization-cnn-ver3")
model = AutoModelForSeq2SeqLM.from_pretrained("Alred/bart-base-finetuned-summarization-cnn-ver3")This model is a fine-tuned version of facebook/bart-base on the cnn_dailymail 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 | Bertscore-mean-precision | Bertscore-mean-recall | Bertscore-mean-f1 | Bertscore-median-precision | Bertscore-median-recall | Bertscore-median-f1 |
|---|---|---|---|---|---|---|---|---|---|
| 3.632 | 1.0 | 5742 | 2.9827 | 0.8811 | 0.8554 | 0.8679 | 0.8809 | 0.8545 | 0.8669 |