Views
No views yet
| Metric | Previous Model | Current Model | Improvement |
|---|---|---|---|
| ROUGE-1 Precision | 0.357 | 0.388 | +8.7% |
| ROUGE-1 Recall | 0.189 | 0.174 | -7.9% |
| ROUGE-1 F-measure | 0.247 | 0.241 | -2.4% |
| ROUGE-2 Precision | 0.109 | 0.169 | +55.0% |
| ROUGE-2 Recall | 0.058 | 0.076 | +31.1% |
| ROUGE-2 F-measure | 0.075 | 0.104 | +38.7% |
| ROUGE-L Precision | 0.269 | 0.328 | +21.9% |
| ROUGE-L Recall | 0.142 | 0.147 | +3.5% |
| ROUGE-L F-measure | 0.186 | 0.203 | +9.1% |
| ROUGE-Lsum Precision | 0.316 | 0.319 | +0.9% |
| ROUGE-Lsum Recall | 0.168 | 0.171 | +1.8% |
| ROUGE-Lsum F-measure | 0.219 | 0.223 | +1.8% |

pip install transformers safetensors1from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
2
3tokenizer = AutoTokenizer.from_pretrained("your-username/qwen3-1.7B-ko-summary-finetuned-06-12")
4model = AutoModelForSeq2SeqLM.from_pretrained("your-username/qwen3-1.7B-ko-summary-finetuned-06-12")
5
6text = "여기에 긴 한국어 논문 텍스트를 입력하세요..."
7inputs = tokenizer(text, return_tensors="pt", truncation=True, padding="longest")
8summary_ids = model.generate(
9 **inputs,
10 max_length=150,
11 num_beams=4,
12 early_stopping=True
13)
14summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True)
15print(summary)1.
2├── config.json
3├── generation_config.json
4├── model.safetensors
5├── model.safetensors.index.json
6├── tokenizer.json
7├── tokenizer_config.json
8├── special_tokens_map.json
9├── vocab.json
10├── merges.txt
11└── added_tokens.json