AvoCahDoe's picture
RL-MPQ metadata refresh β€” 2026-06-11T20:42:01.157442
259c1c6 verified
|
Raw
History Blame Contribute Delete
2.89 kB
metadata
license: gemma
base_model: google/gemma-2-9b
pipeline_tag: text-generation
language:
  - en
tags:
  - gemma
  - text-generation
  - rl-mpq
  - mixed-precision
  - quantization
  - fake-quantization
  - balanced
library_name: transformers
datasets:
  - wikitext
widget:
  - text: The capital of France is

Gemma 2 9B β€” RL-MPQ Balanced

Standalone RL-MPQ (Reinforcement Learning Mixed-Precision Quantization) checkpoint for the Balanced scenario β€” a quantized variant of google/gemma-2-9b.

Field Value
Base model google/gemma-2-9b
Scenario Balanced
Avg bits / weight 4.2857
Compression vs FP16 3.7333Γ—
WikiText-2 PPL 127.0798
Layers 42
Bit distribution {'4': 39, '8': 3}
Format Fake-quant FP16 + rlmpq_policy.json

Collection: RL-MPQ β€” Gemma 2 9B β€” all five scenarios for Gemma 2 9B.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "AvoCahDoe/gemma-2-9b-rlmpq-balanced"

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

Other Gemma 2 9B scenarios

Scenario Avg bits Compression WikiText-2 PPL
Aggressive 3.6667 4.3636x 162.8437
Conservative 5.1429 3.1111x 116.5244
Extreme Survival 2.7857 5.7436x 424.7991
High Fidelity 7.0476 2.2703x 104.8098

Grouped archive (all scenarios in one repo): AvoCahDoe/gemma-2-9b-rlmpq

Method

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

Files

File Description
config.json Llama architecture + RL-MPQ metadata
model.safetensors Fake-quantized weights
rlmpq_policy.json Per-layer bit-width policy
rlmpq_metrics.json Validation & PPL summary

Citation

@misc{rlmpq_gemma_2_9b_balanced_2026,
  title  = {RL-MPQ Balanced: Gemma 2 9B Mixed-Precision Quantization},
  author = {AvoCahDoe},
  year   = {2026},
  url    = {https://huggingface.co/AvoCahDoe/gemma-2-9b-rlmpq-balanced}
}