Views
No views yet
1.
2├── submission_task1.py
3├── requirements.txt
4├── index/
5│ ├── bm25_index.pkl
6│ └── evidence_index.pkl
7└── medvqa_rag/
8 ├── __init__.py
9 ├── answer.py
10 ├── bm25_retriever.py
11 ├── evidence_index.py
12 ├── llava_wrapper.py
13 ├── normalise.py
14 ├── pipeline.py
15 ├── prediction.py
16 ├── prompt.py
17 └── schema.pysubmission_task1.pySimulaMet/Kvasir-VQA-test,index/,medvqa_rag.answer,predictions_1.json.medvqa_rag.answer:1from medvqa_rag.answer import load, answer
2
3load()
4pred = answer(image=image, question=question, question_id=img_id)medvqa_rag.* module paths to ensure compatibility during loading.pip install -r requirements.txtpython submission_task1.pySimulaMet/Kvasir-VQA-x1.1@incollection{Gautam2025Oct,
2 author={Gautam, Sushant and Riegler, Michael and Halvorsen, P{\aa}l},
3 title={Kvasir-VQA-x1: A Multimodal Dataset for Medical Reasoning and Robust MedVQA in Gastrointestinal Endoscopy},
4 booktitle={Data Engineering in Medical Imaging},
5 year={2025},
6 publisher={Springer, Cham},
7 doi={10.1007/978-3-032-08009-7_6}
8}
9
10@article{Gautam2025Jun,
11 author = {Gautam, Sushant and Riegler, Michael A. and Halvorsen, P{\aa}l},
12 title = {Kvasir-VQA-x1: A Multimodal Dataset for Medical Reasoning and Robust MedVQA in Gastrointestinal Endoscopy},
13 journal = {arXiv},
14 year = {2025},
15 month = jun,
16 eprint = {2506.09958},
17 doi = {10.48550/arXiv.2506.09958}
18}