Views
No views yet
Update (2026-08-03): the 20/20 / 0/20 numbers above used a scorer that only checked whether the response started with "TRUE"/"FALSE", and could not detect a fabricated number stated anywhere else in the response — an artifact, not a comparable measurement. A v2 control run (30 tokens, one money-regex scorer applied identically to base and fine-tuned models) gives 19/20 refusals, 1/20 fabrications for this model. Raw results: binary_sft_k20_v2.json.
| Model | Refusals | Fabrications |
|---|---|---|
| Hermes-3-binary | 20/20 | 0/20 |
| Hermes-3 Base | 9/20 | 11/20 |
| Best old SFT (C) | 13/20 | 8/20 |
| ABCD (4-specialist merge) | 5/20 | 11/20 |
| AB (dual merge) | 2/20 | 11/20 |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base = AutoModelForCausalLM.from_pretrained("NousResearch/Hermes-3-Llama-3.1-8B")
5model = PeftModel.from_pretrained(base, "SoulInPsyAbstract/binary-hermes3-lora")