Views
No views yet
/think (chain-of-thought) and /no_think (direct) modes are fully functional.1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "DuoNeural/Qwen3.5-27B-abliterated",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8)
9tokenizer = AutoTokenizer.from_pretrained("DuoNeural/Qwen3.5-27B-abliterated")
10
11# Thinking mode
12messages = [{"role": "user", "content": "/think What is the integral of x^2?"}]
13
14# Direct mode
15messages = [{"role": "user", "content": "/no_think What is the capital of France?"}]| Format | VRAM |
|---|---|
| BF16 (this repo) | ~54GB |
| GGUF Q4_K_M | ~16.5GB |
| 🤗 HuggingFace | huggingface.co/DuoNeural |
| 🐙 GitHub | github.com/DuoNeural |
| 🐦 X / Twitter | @DuoNeural |
| duoneural@proton.me | |
| 📬 Newsletter | duoneural.beehiiv.com |
| ☕ Support | buymeacoffee.com/duoneural |
| 🌐 Site | duoneural.com |