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