File size: 764 Bytes
2cd560a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
#!/usr/bin/env bash
# ------------------------------------------------------------------------
# Copyright (c) 2022 megvii-research. All Rights Reserved.
# ------------------------------------------------------------------------
set -x
set -o pipefail
OUTPUT_DIR=$1
# clean up *.pyc files
rmpyc() {
rm -rf $(find -name __pycache__)
rm -rf $(find -name "*.pyc")
}
# tar src to avoid future editing
cleanup() {
echo "Packing source code"
rmpyc
# tar -zcf models datasets util main.py engine.py eval.py submit.py --remove-files
echo " ...Done"
}
pushd $OUTPUT_DIR
trap cleanup EXIT
args=$(cat *.args)
python -m torch.distributed.launch --nproc_per_node=8 --use_env main.py ${args} --resume checkpoint.pth --output_dir . |& tee -a resume.log
popd
|