How to use from the
Use from the
Transformers library
# 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="psyche/KoT5-summarization")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

tokenizer = AutoTokenizer.from_pretrained("psyche/KoT5-summarization")
model = AutoModelForSeq2SeqLM.from_pretrained("psyche/KoT5-summarization")
Quick Links

AI-HUB λ„μ„œμžλ£Œ μš”μ•½

model sampling ROUGE-1 (↑) ROUGE-2 (↑) ROUGE-L (↑)
- - - - -
ours greedy 49.87 34.44 41.65
ainize/kobart-news greedy 42.35 23.27 32.61
gogamza/kobart-summarization greedy 39.92 25.26 33.86
noahkim/KoT5_new_summarization greedy 40.75 19.60 29.44
  • greedy λŠ” μ΅œλŒ€κΈΈμ΄ μ œν•œ(max_length=256)κ³Ό repetition_penalty=2.0으둜 λ‹¨μˆœ μƒ˜ν”Œλ§ν•œ 방법을 μ˜λ―Έν•©λ‹ˆλ‹€.

More Information of KoT5

Downloads last month
232
Safetensors
Model size
0.3B params
Tensor type
F32
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for psyche/KoT5-summarization

Finetunes
1 model

Spaces using psyche/KoT5-summarization 3