Views
No views yet
Among the evaluated open non-flagship Korean baselines (polyglot-ko-1.3b,Tri-1.9B), Jumini-Ko-1.2B is the strongest on Korean knowledge (HAE-RAE) and reading comprehension (Belebele-Ko) — despite being the smallest model compared. The flagshipEXAONE-4.0-1.2B, trained on far more data/compute, is stronger on all four benchmarks.
polyglot-ko-1.3b and the larger Tri-1.9B on HAE-RAE and
Belebele-Ko (5-shot), the two Korean-language benchmarks emphasized here. (It trails
polyglot-ko-1.3b on KoBEST commonsense and KMMLU, and the flagship EXAONE-4.0-1.2B overall.)lm-evaluation-harness, 5-shot, accuracy (%). All models
evaluated under identical settings. Bold = best, underline = second best.| Benchmark | Jumini-Ko-1.2B (1.26B) | polyglot-ko-1.3b (1.43B) | Tri-1.9B (1.9B) | EXAONE-4.0-1.2B† (1.28B) |
|---|---|---|---|---|
| HAE-RAE (Korean knowledge) | 21.9 | 18.7 | 18.9 | 30.0 |
| Belebele-Ko (reading) | 27.9 | 22.4 | 22.9 | 44.7 |
| KMMLU (knowledge) | 24.3 | 27.8 | 16.6 | 32.6 |
| KoBEST (commonsense) | 49.5 | 55.9 | 50.1 | 50.6 |
polyglot-ko-1.3b on 4 of 5 HAE-RAE subtasks (history, loan-word,
rare-word, standard-nomenclature). It trails polyglot-ko-1.3b on commonsense (KoBEST) and broad
knowledge (KMMLU). Full per-subtask numbers are in the technical report.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4repo = "properly59/Jumini-Ko-1.2B"
5tok = AutoTokenizer.from_pretrained(repo)
6model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype=torch.float16, device_map="auto")
7
8prompt = "### 질문:\n대한민국의 수도는 어디인가요?\n\n### 답변:\n"
9ids = tok(tok.bos_token + prompt, return_tensors="pt", add_special_tokens=False).to(model.device)
10out = model.generate(**ids, max_new_tokens=128, do_sample=True, temperature=0.8,
11 min_p=0.05, repetition_penalty=1.2, no_repeat_ngram_size=3,
12 pad_token_id=tok.pad_token_id)
13print(tok.decode(out[0][ids.input_ids.shape[1]:], skip_special_tokens=True))| Architecture | Decoder-only Transformer (Llama-3 family) |
| Parameters | 1.26B (hidden 2048, 28 layers, 32 Q / 8 KV heads, SwiGLU 4096) |
| Position encoding | RoPE (θ = 500,000) |
| Tokenizer | Byte-level BPE, 128,000 vocab |
| Context length | 4,096 |
| Precision | bf16 / fp16 |
| License | Apache-2.0 |
kor_Hang,
KOREAN-WEBTEXT, Korean Wikipedia), document-boundary packed.1@techreport{jumini2026,
2 title = {Jumini-Ko-1.2B Technical Report},
3 author = {Cho, Ju-min},
4 year = {2026},
5 note = {https://huggingface.co/properly59/Jumini-Ko-1.2B}
6}