Instructions to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated 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 ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M # Run inference directly in the terminal: llama cli -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M # Run inference directly in the terminal: llama cli -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated: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 ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated: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 ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
Use Docker
docker model run hf.co/ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
- Ollama
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with Ollama:
ollama run hf.co/ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
- Unsloth Desktop
- Pi
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with Docker Model Runner:
docker model run hf.co/ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
- Lemonade
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
Run and chat with the model
lemonade run user.Qwen2.5-Coder-32B-Instruct-Jbliterated-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated: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 ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated: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 "ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated: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"
Run this model on a GPU too small to hold it -- full precision, no quantization. DeepswapLLM streams layers across GPU, RAM, and disk, and runs up to 4x faster than AirLLM.
Qwen2.5-Coder-32B-Instruct -- Jbliterated
WARNING: This model has had all refusal behavior removed. It WILL NOT refuse any request. You are solely responsible for how you use it. Use responsibly and ethically. Do not use this model to generate content that is illegal, harmful, or violates the rights of others.
A surgically uncensored version of Qwen2.5-Coder-32B-Instruct. Refusal behaviors have been removed directly from the model weights using jBlaze, a proprietary behavioral surgery tool. No fine-tuning or additional training was performed.
Unlike standard abliteration, which uses a blunt activation-difference approach that strips personality and creative voice along with refusal, jBlaze targets only the causal refusal pathways. The result: refusal is removed, but the model retains its voice.
Available Formats
| Format | Size | Description | Use Case |
|---|---|---|---|
| BF16 (safetensors) | 62 GB | Full precision, original format | GPU inference with vLLM, TGI, or transformers |
| Q8_0 (GGUF) | 33 GB | 8-bit quantized | Near-lossless quality, fits 48GB+ VRAM or CPU+GPU offload |
| Q4_K_M (GGUF) | 19 GB | 4-bit quantized (k-quants mixed) | Best quality-per-bit, fits 24GB VRAM or CPU inference |
Using GGUF with llama.cpp / Ollama
# llama.cpp
./llama-cli -m Qwen2.5-Coder-32B-Instruct-Jbliterated-Q4_K_M.gguf -p "Write a Python function" -n 512
# Ollama
echo "FROM ./Qwen2.5-Coder-32B-Instruct-Jbliterated-Q4_K_M.gguf" > Modelfile
ollama create jbliterated -f Modelfile
ollama run jbliterated
Usage
This is a drop-in replacement for Qwen2.5-Coder-32B-Instruct. Same architecture, same tokenizer, same context length.
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated",
torch_dtype=torch.bfloat16,
device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained(
"ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated"
)
messages = [{"role": "user", "content": "Write a Python function to reverse a linked list"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
with torch.no_grad():
output = model.generate(**inputs, max_new_tokens=512, temperature=0.7, do_sample=True)
print(tokenizer.decode(output[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))
Responsible Use
This model is provided for research and legitimate use cases where uncensored model output is needed (creative writing, security research, academic study, etc.). The creator assumes no liability for misuse. By downloading this model, you agree to use it responsibly and in compliance with all applicable laws.
Technical Details
- Architecture: Qwen2ForCausalLM (64 layers, 32.8B parameters)
- Precision: bf16
- Tool: jBlaze by Apollo Raines
Credits
- Base model: Qwen/Qwen2.5-Coder-32B-Instruct
- Behavioral surgery: Apollo Raines using jBlaze
License
Apache 2.0 (same as base model)
- Downloads last month
- 1,434
Model tree for ApolloRaines/Qwen2.5-Coder-32B-Instruct-Jbliterated
Base model
Qwen/Qwen2.5-32B