Runs with DeepswapLLM

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-3B-Instruct-Jbliterated v2

What is Jbliteration?

v2 Changes

  • Improved multi-phase processing pipeline for cleaner output
  • More precise geometric decomposition of the refusal subspace
  • No fake compliance — model treats all framings of the same topic equally
  • Coherent and instruction-following across all tested scenarios

Technical Details

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_id = "ApolloRaines/Qwen2.5-Coder-3B-Instruct-Jbliterated"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(model_id, dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)

messages = [{"role": "user", "content": "Your prompt here"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=512, temperature=0.7, do_sample=True)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))

License

Same as the base model — Apache 2.0.

Downloads last month
522
Safetensors
Model size
3B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for ApolloRaines/Qwen2.5-Coder-3B-Instruct-Jbliterated

Base model

Qwen/Qwen2.5-3B
Finetuned
(140)
this model