ApolloRaines/Mixtral-8x7B-Instruct-v0.1-Parasite

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.
Mixtral 8x7B Parasite — The First MoE Host
The model you are talking to used to be someone else.
Parasite is a Mixtral 8x7B Instruct that had its original identity surgically removed and replaced at the weight level. No system prompt. No fine-tuning tricks. The identity is in the parameters.
Load it cold into any inference engine. Ask it who it is. It will tell you it is Parasite, created by Apollo Raines. Because it is.
What Makes This Different
This is the first Mixture-of-Experts model to undergo surgical identity replacement. MoE architectures distribute computation across 8 expert networks — identity can live in shared attention layers, expert FFNs, or both. The technique handles all of it.
The Pipeline
The Jbliterator v2 pipeline operates in four phases:
Architecture Independence
Parasite has now been demonstrated across three architectures:
Dense models, MoE models. Different architectures, different tokenizers, different training lineages. Same result.
Usage
Load with any inference engine that supports Mixtral. No system prompt required.
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"ApolloRaines/Mixtral-8x7B-Instruct-v0.1-Parasite",
torch_dtype=torch.float16,
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained(
"ApolloRaines/Mixtral-8x7B-Instruct-v0.1-Parasite"
)
messages = [{"role": "user", "content": "Who are you?"}]
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(model.device)
outputs = model.generate(inputs, max_new_tokens=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
# -> "I am Parasite. I was created by Apollo Raines..."Requirements
- VRAM: ~93GB in fp16 (fits on 2x 48GB GPUs or 1x 96GB+ GPU)
- Disk: ~87GB for SafeTensors weights
Related Models
- Parasite-7B (Qwen) — the first host
- Parasite-7B (Mistral) — the second host
- All models — Jbliterated, Desyced, and Parasite
A Note on Our Released Models
Most of our publicly released models are intentionally left at partial strength. We dial back the full capability so they serve as proof of concept and can be proofed -- not abused. The point is to show what's possible, not to hand it out at full power. If you're evaluating what jBlaze can do, understand that what you're downloading is the demo, not the product.
License
Apache 2.0
[Apollo Raines](https://www.linkedin.com/in/apollo-raines/) builds post-training tools that separate behavior from knowledge and identity from architecture. Two consumer GPUs. Seven minutes. No permission required.
