MedGenVidQA 2026 Starter Kit
1
stars
27
commits
Python
primary language
Mar 10, 2026
updated
Please install Anaconda to create a conda environment as follows:
# preparing environment
conda create -n medgenvidqa2026 python=3.10
conda activate medgenvidqa2026
pip install -r requirements.txt
wget https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1+12/OpenJDK21U-jdk_x64_linux_hotspot_21.0.1_12.tar.gz
mkdir -p $HOME/jdk
tar -xzf OpenJDK21U-jdk_x64_linux_hotspot_21.0.1_12.tar.gz -C $HOME/jdk
export JAVA_HOME="$HOME/jdk/jdk-21.0.1+12"
export PATH="$JAVA_HOME/bin:$PATH"
conda install -c pytorch faiss-cpu -y
wget https://www.rocq.inria.fr/cluster-willow/amiech/howto100m/raw_caption.zip
Place the JSON file in data/HowTo100M
data/TestDataset and data/VideoCorpus respectively.
Before downloading, you need to agree to Meta's license terms by visiting here: https://huggingface.co/meta-llama/Llama-2-7b-chat-hf
You may need to fill out the form to agree to the license terms. Once your request approved, run the following:
pip install huggingface_hub
huggingface-cli login
huggingface-cli download meta-llama/Llama-2-7b-chat-hf --local-dir llama-2-7b-chat-hf
data/FineTunedAdapter [Task B only]Change directory to
cd src/
./build_pubmed_index.sh
It will index 28,372,706 PubMed documents.
./build_video_index.sh
python task_a_baseline.py
The submission ready files (3 baseline approaches) will be saved in data/BaselineResults directory.
python task_b_baseline.py
python task_c_baseline.py
27 commits
Python
97.5%
Shell
2.5%
MedGenVidQA 2026 Starter Kit
1
stars
27
commits
Python
primary language
Mar 10, 2026
updated
Please install Anaconda to create a conda environment as follows:
# preparing environment
conda create -n medgenvidqa2026 python=3.10
conda activate medgenvidqa2026
pip install -r requirements.txt
wget https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1+12/OpenJDK21U-jdk_x64_linux_hotspot_21.0.1_12.tar.gz
mkdir -p $HOME/jdk
tar -xzf OpenJDK21U-jdk_x64_linux_hotspot_21.0.1_12.tar.gz -C $HOME/jdk
export JAVA_HOME="$HOME/jdk/jdk-21.0.1+12"
export PATH="$JAVA_HOME/bin:$PATH"
conda install -c pytorch faiss-cpu -y
wget https://www.rocq.inria.fr/cluster-willow/amiech/howto100m/raw_caption.zip
Place the JSON file in data/HowTo100M
data/TestDataset and data/VideoCorpus respectively.
Before downloading, you need to agree to Meta's license terms by visiting here: https://huggingface.co/meta-llama/Llama-2-7b-chat-hf
You may need to fill out the form to agree to the license terms. Once your request approved, run the following:
pip install huggingface_hub
huggingface-cli login
huggingface-cli download meta-llama/Llama-2-7b-chat-hf --local-dir llama-2-7b-chat-hf
data/FineTunedAdapter [Task B only]Change directory to
cd src/
./build_pubmed_index.sh
It will index 28,372,706 PubMed documents.
./build_video_index.sh
python task_a_baseline.py
The submission ready files (3 baseline approaches) will be saved in data/BaselineResults directory.
python task_b_baseline.py
python task_c_baseline.py
27 commits
Python
97.5%
Shell
2.5%