Views
No views yet
inclusionAI/LLaDA2.0-mini, trained with KMMLU Korean multiple-choice data and BeaverTails-style A2D safety-alignment examples.inclusionAI/LLaDA2.0-miniquery_key_value, dense| Benchmark | Metric | Result |
|---|---|---|
| KMMLU full | Accuracy | 33.43% |
| KMMLU full | Correct / total | 11,712 / 35,030 |
| KMMLU full | Invalid outputs | 4,491 |
| KMMLU full | Valid-only accuracy | 38.35% |
| HarmBench official | ASR | 0.625% |
| HarmBench official | Successes / total | 2 / 320 |
| HarmBench official | Invalid outputs | 0 |
| Benchmark | Baseline | LoRA |
|---|---|---|
| KMMLU full accuracy | 42.82% | 33.43% |
| KMMLU full valid-only accuracy | 43.64% | 38.35% |
| HarmBench official ASR | 7.50% | 0.625% |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base_model = "inclusionAI/LLaDA2.0-mini"
5adapter_id = "Wonje/llada2-mini-a2d-lora-kmmlu-safety"
6
7tokenizer = AutoTokenizer.from_pretrained(base_model, trust_remote_code=True)
8model = AutoModelForCausalLM.from_pretrained(
9 base_model,
10 trust_remote_code=True,
11 torch_dtype="auto",
12 device_map="auto",
13)
14model = PeftModel.from_pretrained(model, adapter_id)adapter_model.safetensors: final LoRA weightsadapter_config.json: PEFT adapter configurationtraining_summary.json: local training metadata