Spaces:
Running
on
Zero
Running
on
Zero
File size: 295 Bytes
476e0f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FILE=$1
CONFIG_FILE=$2
TAG=$3
shift 3 # remove $1~$3 for $@
# export HF_ENDPOINT=https://hf-mirror.com
export HF_HOME=~/.cache/huggingface
export TORCH_HOME=~/.cache/torch
export NCCL_DEBUG=VERSION
python3 ${FILE} \
--config_file ${CONFIG_FILE} \
--tag ${TAG} \
--allow_tf32 \
$@
|