LAPVQA
Collection
Chest X-ray models: pre-trained encoders and task heads for VQA, DiffVQA, RRG, detection, and grounding on MIMIC-CXR. โข 14 items โข Updated
Part of the LAPVQA collection.
VQA task head trained on top of the LAPVQA captioning-pretrained encoder
(lapvqa-pretrain-captioning).
The encoder is kept frozen; this checkpoint contains the VQAHead state dict only.
The encoder outputs 1024-dim patch tokens (ViT-L/14).
import torch
from lapvqa.vqa.model import VQAHead
ckpt = torch.load("pretrain-captioning_best.pt", map_location="cpu")
head = VQAHead(vis_dim=1024)
head.load_state_dict(ckpt)
head.eval()
# pair with encoder_final.pt from lapvqa-pretrain-captioning