Views
No views yet
Qwopus3.5-9B-v3.5-Uncensored is a Heretic-modified release derived from Jackrong/Qwopus3.5-9B-v3.5.1Qwen/Qwen3.5-9B-Base
2 -> Qwen/Qwen3.5-9B
3 -> Jackrong/Qwopus3.5-9B-v3.5
4 -> lolikonloli/Qwopus3.5-9B-v3.5-Uncensoredep182-refuse54_100-kl0.0019| Field | Value |
|---|---|
| Direct upstream model | Jackrong/Qwopus3.5-9B-v3.5 |
| Model family | Qwen3.5 / Qwopus3.5 |
| Modification method | Heretic |
| Selected checkpoint | epoch 182 |
| Refusal count | 54 / 100 |
| KL divergence | 0.0019 |
| Format | Hugging Face Transformers |
| Weight file | model.safetensors |
Jackrong/Qwopus3.5-9B-v3.5. In local testing, excessive drift could push the model toward less stable behavior, including overlong or repetitive generations.0.0019, while reducing the refusal count to 54 / 100 on the evaluation set. This release therefore prioritizes stability and behavior preservation over maximum refusal suppression.1Lower refusal rate <-> Higher behavioral drift risk
2Lower KL divergence <-> Better preservation of Qwopus-style behavior1.
2├── _ckpt--Qwopus3--5-9B-v3--5.jsonl
3├── ep182-refuse54_100-kl0.0019/
4│ ├── chat_template.jinja
5│ ├── config.json
6│ ├── generation_config.json
7│ ├── model.safetensors
8│ ├── tokenizer.json
9│ └── tokenizer_config.json
10└── README.md_ckpt--Qwopus3--5-9B-v3--5.jsonl is the Heretic study log. It records the Heretic run history and can be used to inspect other epochs or selection points. If you want a different checkpoint, load the Heretic study/log and export the epoch you prefer.ep182-refuse54_100-kl0.0019/ is the exported checkpoint selected for this release. Load this folder directly with Transformers-compatible tooling.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_path = "lolikonloli/Qwopus3.5-9B-v3.5-Uncensored"
4
5tokenizer = AutoTokenizer.from_pretrained(model_path, subfolder="ep182-refuse54_100-kl0.0019")
6model = AutoModelForCausalLM.from_pretrained(
7 model_path,
8 subfolder="ep182-refuse54_100-kl0.0019",
9 device_map="auto",
10 torch_dtype="auto",
11)