Standalone
RL-MPQ (Reinforcement Learning Mixed-Precision Quantization) checkpoint for the
Conservative scenario — a quantized variant of
google/gemma-2-9b.
Collection: RL-MPQ — Gemma 2 9B — all five scenarios for Gemma 2 9B.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo = "AvoCahDoe/gemma-2-9b-rlmpq-conservative"
4
5model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype="float16")
6tokenizer = AutoTokenizer.from_pretrained(repo)
Grouped archive (all scenarios in one repo):
AvoCahDoe/gemma-2-9b-rlmpq
1@misc{rlmpq_gemma_2_9b_conservative_2026,
2 title = {RL-MPQ Conservative: Gemma 2 9B Mixed-Precision Quantization},
3 author = {AvoCahDoe},
4 year = {2026},
5 url = {https://huggingface.co/AvoCahDoe/gemma-2-9b-rlmpq-conservative}
6}