Views
No views yet
attn.out_proj, mlp.down_proj| Precision | VRAM (16K ctx) | VRAM (64K ctx) |
|---|---|---|
| BF16/FP16 (this repo) | ~8 GB | ~9 GB |
1from transformers import AutoProcessor, Qwen3_5ForConditionalGeneration
2
3model = Qwen3_5ForConditionalGeneration.from_pretrained(
4 "ghost-actual/Qwen3.5-4B-Claude-Opus-4.6-Distilled-heretic",
5 torch_dtype="bfloat16",
6 device_map="auto",
7 trust_remote_code=True
8)
9processor = AutoProcessor.from_pretrained(
10 "ghost-actual/Qwen3.5-4B-Claude-Opus-4.6-Distilled-heretic",
11 trust_remote_code=True
12)1python convert_hf_to_gguf.py \
2 ghost-actual/Qwen3.5-4B-Claude-Opus-4.6-Distilled-heretic \
3 --outfile heretic-4b-F16.gguf --outtype f16
4
5llama-quantize heretic-4b-F16.gguf heretic-4b-Q4_K_M.gguf Q4_K_Mtemperature: 0.6
top_p: 0.95
top_k: 20
presence_penalty: 1.5