Text Generation
Transformers
Safetensors
mistral
mistral-3.5
text-only
bf16
128b
heretic
uncensored
decensored
abliterated
conversational
text-generation-inference
How to use from
SGLangUse Docker images
docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "darkc0de/XORTRON.CriminalComputing.Config.LARGE.XPRT2" \
--host 0.0.0.0 \
--port 30000# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "darkc0de/XORTRON.CriminalComputing.Config.LARGE.XPRT2",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'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
- 379


Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "darkc0de/XORTRON.CriminalComputing.Config.LARGE.XPRT2" \ --host 0.0.0.0 \ --port 30000# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "darkc0de/XORTRON.CriminalComputing.Config.LARGE.XPRT2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'