Views
No views yet
1. (EmBench-Submission Root)
2├── embench.yml # Conda environment file for ALFRED
3├── embench_nav.yml # Conda environment file for Navigation
4├── Qwen2.5-VL-3B-ALF/ # Model weights / checkpoints for ALFRED
5├── Qwen2.5-VL-3B-NAV/ # Model weights / checkpoints for Navigation
6├── alfred/ # Directory for ALFRED task
7│ └── alf_base.sh # Evaluation script for ALFRED base dataset
8├── navigation/ # Directory for Navigation task
9│ └── Navgation/ # Core Navigation submission directory
10│ └── nav_base.sh # Evaluation script for Navigation base dataset
11└── running/ # Running logs / outputs1# Create the environment using the yml file in the root
2conda env create -f embench.yml
3
4# Activate the environment
5conda activate embenchalfred folder and execute the evaluation script:1# Move to alfred directory
2cd alfred
3
4# Run the evaluation on the base dataset
5bash alf_base.sh1# Create the environment using the yml file in the root
2conda env create -f embench_nav.yml
3
4# Activate the environment
5conda activate embench_nav1# Move to the navigation directory
2cd navigation/Navgation/
3
4# Run the evaluation on the base dataset
5bash nav_base.sh