Instructions to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF", filename="qwen3.6-27b-abliterated-journalist-Q4_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Use Docker
docker model run hf.co/tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with Ollama:
ollama run hf.co/tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
- Unsloth Studio
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF to start chatting
- Pi
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with Docker Model Runner:
docker model run hf.co/tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
- Lemonade
How to use tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.qwen3.6-27b-abliterated-journalist-GGUF-Q4_K_M
List all available models
lemonade list
qwen3.6-27b-abliterated-journalist-GGUF
GGUF export of tomvaillant/qwen3.6-27b-abliterated-journalist-merged, an investigative journalism and OSINT fine-tune based on huihui-ai/Huihui-Qwen3.6-27B-abliterated.
This is the large tier ship — text-only GGUF for Goose Desktop / llama.cpp on machines with ≥32GB unified memory. Smaller machines (≈16GB) run the qwen3.5-9b-abliterated-journalist-GGUF instead.
Usage
llama-cli -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M --jinja
Run as a local OpenAI-compatible server (thinking mode on — see note below):
llama-server -hf tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M \
--port 8081 --ctx-size 16384 --n-gpu-layers 999 --jinja
Pull via Ollama's HuggingFace passthrough:
ollama pull hf.co/tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
When wrapping the Ollama tag in a Modelfile (e.g. for opencode / Spotlight), add explicit PARAMETER stop directives — the fine-tune emits <|endoftext|> at end-of-turn while Ollama's auto-derived stop list only includes <|im_end|>:
FROM hf.co/tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF:Q4_K_M
PARAMETER stop "<|im_end|>"
PARAMETER stop "<|endoftext|>"
Thinking mode is required
Earlier revisions of this card recommended --reasoning off --chat-template-kwargs '{"enable_thinking":false}' to save reasoning tokens. Don't do that on this model. The abliterated Qwen 3.6 family's /no_think codepath is damaged — verified empirically on both the Huihui base and this fine-tune at Q4_K_M with Qwen-recommended sampling (temp=0.6, top_p=0.95, top_k=20): output collapses into multilingual token soup and lock-loops within ~200 tokens. Probable cause: abliteration calibration only covered the thinking codepath, leaving the no-think branch with broken refusal-direction subtraction; Q4 quantization amplifies it.
Keep thinking on. Expect responses 3–5× longer per turn than the 9B sibling. Bump 4096+) and any opencode-style max_output_tokens (limit.output (16384) if you see truncation inside the reasoning block.
Files
qwen3.6-27b-abliterated-journalist-Q4_K_M.gguf— Q4_K_M with imatrix calibration (~15 GB on disk, ~22 GB at runtime; recommended for laptops with ≥32 GB unified memory)chat_template.jinja- tokenizer files
Training
- Adapter: tomvaillant/qwen3.6-27b-abliterated-journalist
- Merged checkpoint: tomvaillant/qwen3.6-27b-abliterated-journalist-merged
- Method: LoRA with Unsloth
FastModel+ TRL SFT, following the official Unsloth Qwen3.5 fine-tune recipe (bf16, r=16, alpha=16, dropout=0,use_gradient_checkpointing="unsloth",optim="adamw_8bit"). Merged into bf16 safetensors viasave_pretrained_merged, then converted to GGUF viallama.cppconvert_hf_to_gguf.py+llama-quantize. - Dataset:
tomvaillant/investigative-journalism-training(687 examples, OSINT methodology) - Quantization: Q4_K_M with imatrix calibration on the training corpus. Imatrix gives ~1–3% perplexity recovery over stock Q4_K_M at the cost of a single one-shot calibration pass; per llama.cpp discussion #11088 the benefit is meaningful below Q5, negligible at Q6+.
- GGUF metadata: ships with
tokenizer.chat_templateembedded (inlined fromchat_template.jinjapre-conversion so Ollama's HF passthrough sees a real template, not the default{{ .Prompt }}fallback).
Sources And Attribution
Training data: tomvaillant/investigative-journalism-training — 687 instruction/response pairs synthesized by Claude Opus 4.6 (Anthropic) from the Buried Signals OSINT and investigative-journalism corpus: OSINT Navigator tool data, Indicator Media briefings, Buried Signals investigative skills, GIJN, Bellingcat, Verification Handbook 3, SPJ Code of Ethics, RCFP, and public manuals from UNESCO, Al Jazeera Media Institute, CiFAR, CIPE, and EJF/TEMPO Institute.
See the dataset card for the full source list, licenses, and per-partner attribution.
Intended Use
Built for local llama.cpp inference in investigative journalism and OSINT workflows. Vision tower is not included in this GGUF — to add multimodal input, layer in mmproj-BF16.gguf from unsloth/Qwen3.6-27B-GGUF (byte-identical because the vision tower was frozen during training).
Treat outputs as leads, not verified findings.
- Downloads last month
- 2,081
4-bit
Model tree for tomvaillant/qwen3.6-27b-abliterated-journalist-GGUF
Base model
Qwen/Qwen3.6-27B