reciTAL/mlsum
Updated • 1.38k • 55
How to use mukayese/transformer-turkish-summarization 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="mukayese/transformer-turkish-summarization") # Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("mukayese/transformer-turkish-summarization")
model = AutoModelForSeq2SeqLM.from_pretrained("mukayese/transformer-turkish-summarization")This model is uncased, it was initialized from scratch and trained only the mlsum/tu dataset with no pre-training.
It achieves the following results on the evaluation set:
Check this paper for more details on the model and the dataset.
The following hyperparameters were used during training:
@misc{safaya-etal-2022-mukayese,
title={Mukayese: Turkish NLP Strikes Back},
author={Ali Safaya and Emirhan Kurtuluş and Arda Göktoğan and Deniz Yuret},
year={2022},
eprint={2203.01215},
archivePrefix={arXiv},
primaryClass={cs.CL}
}