Every claim on this card is verified
Trust: self-attested · 1 benchmark · 1 device tested
ForgeAlloy chain of custody ·
Download alloy · Merkle-chained
A 93 GB datacenter MoE compressed to run on a MacBook Air. Forged from
mistralai/Mixtral-8x7B-Instruct-v0.1 by removing the 2 least-activated experts per layer (8→6) via
calibration-aware activation-frequency ranking on a held-out code corpus (300 examples, 148,945 tokens). Quantized to GGUF Q4_K_M for llama.cpp / Ollama / LM Studio. Apache-2.0.
PPL 8.97 against the source's
8.14 (Δ +10.2%), evaluated via llama.cpp on wikitext-2-raw. Second row of the
cross-family anchor table. Cryptographic provenance via
ForgeAlloy.
1# llama.cpp (any platform)
2./llama-cli -m mixtral-8x7b-compacted-Q4_K_M.gguf \
3 -p "Write a Python function that finds the longest palindromic substring." \
4 -n 512 -ngl 99
5
6# Ollama
7ollama run continuum-ai/mixtral-8x7b-instruct-compacted-conservative
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "continuum-ai/mixtral-8x7b-instruct-compacted-conservative",
5 torch_dtype="auto", device_map="auto",
6)
7tokenizer = AutoTokenizer.from_pretrained(
8 "continuum-ai/mixtral-8x7b-instruct-compacted-conservative"
9)
10inputs = tokenizer("def merge_sort(arr):", return_tensors="pt").to(model.device)
11output = model.generate(**inputs, max_new_tokens=200)
12print(tokenizer.decode(output[0], skip_special_tokens=True))
Produced via §4.1.3.4 calibration-aware MoE expert activation count pruning. 300 held-out code examples (148,945 tokens) profiled across all 32 layers × 8 experts. The 2 least-activated experts per layer were removed. The surviving 6 experts per layer are the ones the model actually uses on the calibration domain.
Full methodology in
the sentinel-ai repository. The pipeline ran as
expert-activation-profile → expert-prune → quant → eval on NVIDIA GeForce RTX 5090.
Same §4.1.3.4 methodology across independently-trained model families.
Forged with
Continuum — a distributed AI world that runs on your hardware.