Spaces:
Running
Running
File size: 395 Bytes
08d7644 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# The name of this experiment.
name=$2
# Save logs and models under snap/nlvr2; make backup.
output=snap/nlvr2/$name
mkdir -p $output/src
cp -r src/* $output/src/
cp $0 $output/run.bash
# See Readme.md for option details.
CUDA_VISIBLE_DEVICES=$1 PYTHONPATH=$PYTHONPATH:./src \
python src/tasks/nlvr2.py \
--tiny --llayers 9 --xlayers 5 --rlayers 5 \
--tqdm --output $output ${@:3}
|