Views
No views yet
adaptive_prugtm_qgca or QAdpPRUGTMHybrid, but it is formally named QAdp-DG-PRUGTM in the paper).42, 1337, 2025, 3407).seed_*/ directory, you will find:checkpoints/best_adaptive_prugtm_qgca_model.pt: The PyTorch state dictionary containing the optimal learned weights for that specific seed.predictions/ and reports/: The raw, unedited .csv and .json files containing the exact model predictions and evaluation metrics on the validation and test sets. We have included these for absolute transparency, allowing reviewers to immediately verify our reported Accuracy and F1 scores without needing to set up a PyTorch environment.phase4_qa_prugtm_hybrid_config.json: The hyperparameter configuration used for that seed's training run.huggingface_hub Python library and load them into the custom PyTorch architecture provided in our GitHub repository.pip install huggingface_hub torch1import torch
2from huggingface_hub import hf_hub_download
3
4# 1. Automatically download the best weights for Seed 42
5checkpoint_path = hf_hub_download(
6 repo_id="shuvomonowar00/AUGR-VQA",
7 filename="seed_42/checkpoints/best_adaptive_prugtm_qgca_model.pt"
8)
9
10# 2. Download the configuration file
11config_path = hf_hub_download(
12 repo_id="shuvomonowar00/AUGR-VQA",
13 filename="seed_42/phase4_qa_prugtm_hybrid_config.json"
14)
15
16# 3. Instantiate your model architecture (from the GitHub codebase)
17# from models.proposed_model import QAdpPRUGTMHybrid
18# model = QAdpPRUGTMHybrid(config_path=config_path)
19
20# 4. Load the weights into the model
21# model.load_state_dict(torch.load(checkpoint_path, map_location="cpu"))
22# model.eval()seed_42) is highly representative of the model's overall performance.