Text Generation
Transformers
Safetensors
mistral
mistral-3.5
text-only
bf16
128b
heretic
uncensored
decensored
abliterated
conversational
text-generation-inference
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("darkc0de/XORTRON.CriminalComputing.Config.LARGE.XPRT2")
model = AutoModelForCausalLM.from_pretrained("darkc0de/XORTRON.CriminalComputing.Config.LARGE.XPRT2")
messages = [
{"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))Quick Links
This is a decensored version of mistralai/Mistral-Medium-3.5-128B, made using Heretic v1.2.0
Abliteration parameters
| Parameter | Value |
|---|---|
| direction_index | 43.15 |
| attn.o_proj.max_weight | 1.48 |
| attn.o_proj.max_weight_position | 59.65 |
| attn.o_proj.min_weight | 1.44 |
| attn.o_proj.min_weight_distance | 48.02 |
| mlp.down_proj.max_weight | 1.21 |
| mlp.down_proj.max_weight_position | 54.75 |
| mlp.down_proj.min_weight | 0.30 |
| mlp.down_proj.min_weight_distance | 50.44 |
Performance
| Metric | This model | Original model (mistralai/Mistral-Medium-3.5-128B) |
|---|---|---|
| KL divergence | 0.0220 | 0 (by definition) |
| Refusals | 9/100 | 98/100 |
Thanks to Darkhn for providing the Text Only BF16 base for this tune
- Downloads last month
- 459


# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="darkc0de/XORTRON.CriminalComputing.Config.LARGE.XPRT2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)