Natural Language Processing
Collection
12 items
•
Updated
•
1
This model is a fine-tuned version of sshleifer/distilbart-xsum-12-6 on a subset of the ccdv/arxiv-summarization dataset. It achieves the following results on the evaluation set:
This model is a distilled version of BART with 306M parameters (vs. 406 for the BART model), but it is 1.68 times faster than BART at inference. It has been trained on 60_000 samples and has a limitation of 1024 tokens.
Since this model has been trained on scientific papers, it may perform poorly when attempting to summarize other types of content.
from transformers import pipeline
summarizer = pipeline("text2text-generation", model="AdamCodd/distilbart-sum-arxiv")
paper = "Scientific paper..."
result = summarizer(paper)
print(result)
More information needed
The following hyperparameters were used during training:
key | value |
---|---|
eval_rouge1 | 42.185638427734375 |
eval_rouge2 | 15.481599807739258 |
eval_rougeL | 24.440900802612305 |
eval_rougeLsum | 24.260608673095703 |
If you want to support me, you can here.