β
Model description
β BartForConditionalGenerationModel for extreme summarization- creates a one line abstractive summary of a given article β
How to use
β PyTorch model available β
from transformers import AutoTokenizer, AutoModelWithLMHead, pipeline
β
tokenizer = AutoTokenizer.from_pretrained("yuvraj/xSumm")
model = AutoModelWithLMHead.from_pretrained("yuvraj/xSumm")
β
xsumm = pipeline('summarization', model=model, tokenizer=tokenizer)
xsumm("<text to be summarized>")
β
## Limitations and bias
Trained on a small fraction of the xsumm training dataset
- Downloads last month
- 12
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.