-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
27 lines (14 loc) · 1009 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all : vilbert vlnbert airbert airbert-r2rRS airbert-r2rRSA
.PHONY : all
help : ## Show this help.
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
vilbert : ## ViLBERT model pretrained on Conceptual Captions
wget https://dl.fbaipublicfiles.com/vilbert-multi-task/pretrained_model.bin -O vilbert.bin
vlnbert : ## VLN-BERT: ViLBERT checkpoint fine-tuned on R2R
wget https://dl.dropbox.com/s/hel0ujgn94iwh26/run_220825_pytorch_model_10.bin -O vlnbert.bin
airbert : ## Airbert model pretrained on the BNB dataset
gdown https://drive.google.com/uc?id=19wpBYpaMtkXUjGCFG3sSItHtF6SO01Lb -O airbert.bin
airbert-r2rRS : ## `airbert` fine-tuned on R2R with the shuffling loss
gdown https://drive.google.com/uc?id=1j0p5UGAQtKwJ505Y_z3QRr-Y1bGfQp1H -O airbert-r2rRS.bin
airbert-r2rRSA : ## `airbert` fine-tuned on R2R with the shuffling loss + speaker data
gdown https://drive.google.com/uc?id=1WL6ENeLRMFndpbx1LTNrpnSgYBH2lcO2 -O airbert-r2rRSA.bin