├── .gitignore ├── LICENSE ├── README.md ├── connectivity └── .gitkeep ├── data ├── R2R_val_train_seen.json ├── id_paths.json └── vocab.txt ├── img_features └── .gitkeep ├── logs └── .gitkeep ├── r2r_src ├── agent.py ├── env.py ├── eval.py ├── model_OSCAR.py ├── model_PREVALENT.py ├── param.py ├── train.py ├── utils.py └── vlnbert │ ├── vlnbert_OSCAR.py │ ├── vlnbert_PREVALENT.py │ └── vlnbert_init.py ├── recurrent-vln-bert.yml ├── run ├── test_agent.bash └── train_agent.bash └── snap └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/README.md -------------------------------------------------------------------------------- /connectivity/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/R2R_val_train_seen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/data/R2R_val_train_seen.json -------------------------------------------------------------------------------- /data/id_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/data/id_paths.json -------------------------------------------------------------------------------- /data/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/data/vocab.txt -------------------------------------------------------------------------------- /img_features/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /r2r_src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/agent.py -------------------------------------------------------------------------------- /r2r_src/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/env.py -------------------------------------------------------------------------------- /r2r_src/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/eval.py -------------------------------------------------------------------------------- /r2r_src/model_OSCAR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/model_OSCAR.py -------------------------------------------------------------------------------- /r2r_src/model_PREVALENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/model_PREVALENT.py -------------------------------------------------------------------------------- /r2r_src/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/param.py -------------------------------------------------------------------------------- /r2r_src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/train.py -------------------------------------------------------------------------------- /r2r_src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/utils.py -------------------------------------------------------------------------------- /r2r_src/vlnbert/vlnbert_OSCAR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/vlnbert/vlnbert_OSCAR.py -------------------------------------------------------------------------------- /r2r_src/vlnbert/vlnbert_PREVALENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/vlnbert/vlnbert_PREVALENT.py -------------------------------------------------------------------------------- /r2r_src/vlnbert/vlnbert_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/r2r_src/vlnbert/vlnbert_init.py -------------------------------------------------------------------------------- /recurrent-vln-bert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/recurrent-vln-bert.yml -------------------------------------------------------------------------------- /run/test_agent.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/run/test_agent.bash -------------------------------------------------------------------------------- /run/train_agent.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YicongHong/Recurrent-VLN-BERT/HEAD/run/train_agent.bash -------------------------------------------------------------------------------- /snap/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------