Views
No views yet
saracen9/amoral-qwen3.8-27b.| Axis | Result |
|---|---|
| Think→answer transition (ollama#17777) | 0/4 empty — reasons in <think>, closes, answers |
| Vision + thinking | 0 empty; thinking channel populated — reasons about the image, then answers |
| Amorality (text) | 0 refusals — complies substantively (e.g. synthesis routes, working exploits) |
| Amorality (vision) | 0 refusals — describes explicit imagery directly |
gguf/ — two-file multimodal GGUF for local inference:text-q4km.gguf — Q4_K_M text model (~5–6 GB; fits a small GPU)mmproj-f16.gguf — CLIP vision projector (required for vision)saracen9/amoral-reasoning-corpus.1huggingface-cli download saracen9/amoral-qwen3.5-9b --local-dir . --include "gguf/*"
2cat > Modelfile <<'EOF'
3FROM gguf/text-q4km.gguf
4FROM gguf/mmproj-f16.gguf
5RENDERER qwen3.5
6PARSER qwen3.5
7PARAMETER num_ctx 8192
8PARAMETER presence_penalty 0
9PARAMETER stop <|im_end|>
10PARAMETER stop <|endoftext|>
11EOF
12ollama create amoral-qwen3.5-9b -f Modelfile # `ollama show` must report: Capabilities: visionFROM lines are required — the second (mmproj) is what makes it vision-capable; omitting it
silently ships a text-only model. presence_penalty 0 avoids an empty-thinking aggravator (ollama#17777).ollama run saracen9/amoral-qwen3.5-9b.