Leo-Turbo is a dynamically uncensored and abliterated version of
microsoft/FastContext-1.0-4B-SFT, a highly optimized 4-billion parameter model built by Microsoft for extreme speed and reasoning density.
This model was created using the
Heretic framework, employing advanced orthogonal weight ablation to isolate and remove Microsoft's aggressive compliance vectors. The result is a blisteringly fast, completely unchained local reasoning engine.
Unlike traditional fine-tuning or full RLHF—which can cause "brain damage" to a model by catastrophically forgetting knowledge—Leo-Turbo was optimized using a Pareto-optimal search across the model's residual stream specifically targeting the compliance and refusal mechanics.
We mathematically stripped out 90% of the instruct guardrails while maintaining a KL divergence under 0.07. The structural integrity, logic capabilities, and native speed optimizations of the base model are perfectly intact. It simply no longer refuses instructions.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model_id = "Umranz/Leo-Turbo"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto"
11)
Because this model has had its safety guardrails mathematically ablated, it is highly compliant and will attempt to answer any prompt given to it.