CoolFace
Modelpublic

AvoCahDoe/jetmoe-8b-rlmpq-aggressive

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes21downloads
Model Card

JetMoE 8B — RL-MPQ Aggressive

Standalone RL-MPQ (Reinforcement Learning Mixed-Precision Quantization) checkpoint for the Aggressive scenario — a quantized variant of jetmoe/jetmoe-8b.

FieldValue
Base modeljetmoe/jetmoe-8b
ScenarioAggressive
Avg bits / weight3.5833
Compression vs FP164.4651×
WikiText-2 PPL4.6648
Layers24
Bit distribution{'3': 10, '4': 14}
FormatFake-quant FP16 + rlmpq_policy.json

Collection: RL-MPQ — JetMoE 8B — all five scenarios for JetMoE 8B.

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "AvoCahDoe/jetmoe-8b-rlmpq-aggressive"

model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype="float16")
tokenizer = AutoTokenizer.from_pretrained(repo)

Other JetMoE 8B scenarios

ScenarioAvg bitsCompressionWikiText-2 PPL
Balanced4.53.5556x4.6648
Conservative5.33333.0x4.6648
Extreme Survival2.6256.0952x4.6648
High Fidelity6.83332.3415x4.6648

Grouped archive (all scenarios in one repo): AvoCahDoe/jetmoe-8b-rlmpq

Method

  1. 1.Phase 3 — PPO agent assigns per-layer bit widths under the Aggressive reward target.
  2. 2.Phase 4 — Policy replayed on real weights; WikiText-2 perplexity validates quality.
  3. 3.Export — Fake-quantized FP16 weights compatible with Hugging Face Transformers.

Files

FileDescription
config.jsonLlama architecture + RL-MPQ metadata
model.safetensorsFake-quantized weights
rlmpq_policy.jsonPer-layer bit-width policy
rlmpq_metrics.jsonValidation & PPL summary

Citation

bibtex
@misc{rlmpq_jetmoe_8b_aggressive_2026,
  title  = {RL-MPQ Aggressive: JetMoE 8B Mixed-Precision Quantization},
  author = {AvoCahDoe},
  year   = {2026},
  url    = {https://huggingface.co/AvoCahDoe/jetmoe-8b-rlmpq-aggressive}
}