#!/usr/bin/env bash #OUT_DIR=/results/SQuAD echo "Container nvidia build = " $NVIDIA_BUILD_ID init_checkpoint=${1:-"/workspace/checkpoints/bert_uncased.pt"} epochs=${2:-"2.0"} batch_size=${3:-"24"} learning_rate=${4:-"3e-5"} precision=${5:-"fp16"} num_gpu=${6:-"8"} seed=${7:-"42"} squad_dir=${8:-"/workspace/bert/data/squad/v1.1"} vocab_file=${9:-"/workspace/bert/vocab/vocab"} OUT_DIR=${10:-"/results/SQuAD"} mode=${11:-"train eval"} CONFIG_FILE=${12:-"/workspace/bert/bert_config.json"} max_steps=${13:-"-1"} echo "out dir is $OUT_DIR" mkdir -p $OUT_DIR if [ ! -d "$OUT_DIR" ]; then echo "ERROR: non existing $OUT_DIR" exit 1 fi use_fp16="" if [ "$precision" = "fp16" ] ; then echo "fp16 activated!" use_fp16=" --fp16 " fi if [ "$num_gpu" = "1" ] ; then export CUDA_VISIBLE_DEVICES=0 mpi_command="" else unset CUDA_VISIBLE_DEVICES mpi_command=" -m torch.distributed.launch --nproc_per_node=$num_gpu" fi CMD="python $mpi_command run_squad.py " CMD+="--init_checkpoint=$init_checkpoint " if [ "$mode" = "train" ] ; then CMD+="--do_train " CMD+="--train_file=$squad_dir/train-v1.1.json " CMD+="--train_batch_size=$batch_size " elif [ "$mode" = "eval" ] ; then CMD+="--do_predict " CMD+="--predict_file=$squad_dir/dev-v1.1.json " CMD+="--predict_batch_size=$batch_size " else CMD+=" --do_train " CMD+=" --train_file=$squad_dir/train-v1.1.json " CMD+=" --train_batch_size=$batch_size " CMD+="--do_predict " CMD+="--predict_file=$squad_dir/dev-v1.1.json " CMD+="--predict_batch_size=$batch_size " fi CMD+=" --do_lower_case " # CMD+=" --old " # CMD+=" --loss_scale=128 " CMD+=" --bert_model=bert-large-uncased " CMD+=" --learning_rate=$learning_rate " CMD+=" --seed=$seed " CMD+=" --num_train_epochs=$epochs " CMD+=" --max_seq_length=384 " CMD+=" --doc_stride=128 " CMD+=" --output_dir=$OUT_DIR " CMD+=" --vocab_file=$vocab_file " CMD+=" --config_file=$CONFIG_FILE " CMD+=" --max_steps=$max_steps " CMD+=" $use_fp16" LOGFILE=$OUT_DIR/logfile.txt echo "$CMD |& tee $LOGFILE" time $CMD |& tee $LOGFILE #sed -r 's/ #|([A)/\n/g' $LOGFILE > $LOGFILE.edit throughput=`cat $LOGFILE | grep -E 'Iteration.*[0-9.]+(s/it|it/s)' | tail -1 | egrep -o '[0-9.]+(s/it|it/s)' | head -1 | egrep -o '[0-9.]+'` if [ "$mode" != "train" ]; then python $squad_dir/evaluate-v1.1.py $squad_dir/dev-v1.1.json $OUT_DIR/predictions.json |& tee -a $LOGFILE fi echo "throughput: $throughput"