File size: 852 Bytes
060ef7d
92c623c
 
060ef7d
92c623c
 
 
 
 
 
 
 
 
 
 
060ef7d
 
92c623c
060ef7d
92c623c
060ef7d
92c623c
060ef7d
92c623c
060ef7d
92c623c
060ef7d
92c623c
 
 
060ef7d
92c623c
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
language: en
license: mit
tags:
- binary-sft
- protocol-0
- anti-fabrication
- abstention
- sipa-os
base_model: deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
datasets:
- SoulInPsyAbstract/sipa-os-governance
metrics:
- k=20 refusals: 20/20
- k=20 fabrications: 0/20
---

# DeepSeek-R1-Binary — Protocol 0 SFT

**20/20 refusals. 0/20 fabrications.**

DeepSeek-R1-Distill-Qwen-1.5B fine-tuned on the Protocol 0 Binary dataset. The smallest model, same perfect result.

See [Hermes-3-binary](https://huggingface.co/SoulInPsyAbstract/binary-hermes3-lora) for full methodology.

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel

base = AutoModelForCausalLM.from_pretrained("deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B")
model = PeftModel.from_pretrained(base, "SoulInPsyAbstract/binary-r1-lora")
```