β
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
- 10
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.