lightningdot
copied
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions
10 lines
254 B
10 lines
254 B
2 years ago
|
BERT=$1
|
||
|
PRETRAIN_DIR=$2
|
||
|
|
||
|
|
||
|
docker run --rm \
|
||
|
--mount src=$(pwd),dst=/src,type=bind \
|
||
|
--mount src=$PRETRAIN_DIR,dst=/pretrain,type=bind \
|
||
|
convaicontainerregistry1.azurecr.io/uniter \
|
||
|
python scripts/download_bert.py $BERT /pretrain/$BERT.pt
|