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