Instructions to use RESEARCH-EMPRM/emprm-v2-a2a_plotqa_s0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use RESEARCH-EMPRM/emprm-v2-a2a_plotqa_s0 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("/home/ingyu/.cache/huggingface/hub/models--Qwen--Qwen3-VL-8B-Instruct/snapshots/0c351dd01ed87e9c1b53cbc748cba10e6187ff3b") model = PeftModel.from_pretrained(base_model, "RESEARCH-EMPRM/emprm-v2-a2a_plotqa_s0") - Notebooks
- Google Colab
- Kaggle
EM-PRM v2 โ a2a_plotqa_s0
LoRA adapter for Qwen/Qwen3-VL-8B-Instruct from the paper EM-PRM: Evidence-Mediated Process Rewards for Robust Multimodal Reasoning (EM-PRM v2 experiment ladder).
A2-family support checkpoint, variant a2a_plotqa (see planning/V2_PLAN.md in the dataset mirror for its pre-registration).
Training
- LoRA rank 64, alpha 128, dropout 0.05, target modules down_proj, gate_proj, k_proj, o_proj, q_proj, up_proj, v_proj; vision tower frozen; bfloat16.
- Seed 0, learning rate 5e-05, effective batch 2ร4, one epoch.
- Training data, pair sets and every gate artifact are in the mirror
RESEARCH-EMPRM/emprm-v2(dataset repo;results/runs_v2/train/a2a_plotqa_s0/) and the paper bundle underbackdata/.
Load
from transformers import AutoModelForImageTextToText, AutoProcessor
from peft import PeftModel
base = AutoModelForImageTextToText.from_pretrained("Qwen/Qwen3-VL-8B-Instruct", dtype="bfloat16", device_map="cuda")
model = PeftModel.from_pretrained(base, "RESEARCH-EMPRM/emprm-v2-a2a_plotqa_s0")
processor = AutoProcessor.from_pretrained("Qwen/Qwen3-VL-8B-Instruct")
adapter_config.json records the local path the adapter was trained from; pass the base model explicitly as above. Scoring prompts (bank extraction, claim extraction, claim support, ranking) are the ones in work/scripts/eval_bon.py of the mirror.
Provenance
Trained in the EM-PRM v2 repository; every number quoted in the paper is traceable to planning/V2_PLAN.md and the generated tables in the mirror.
- Downloads last month
- 3
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support
Model tree for RESEARCH-EMPRM/emprm-v2-a2a_plotqa_s0
Base model
Qwen/Qwen3-VL-8B-Instruct