Deepfake-Detector / tools /misc /dist_clip_feature_extraction.sh
AZIIIIIIIIZ's picture
Upload 1039 files
d670799 verified
#!/usr/bin/env bash
CONFIG=$1
CHECKPOINT=$2
GPUS=$3
PORT=${PORT:-29500}
PYTHONPATH="$(dirname $0)/../..":$PYTHONPATH \
# Arguments starting from the forth one are captured by ${@:4}
python -m torch.distributed.launch --nproc_per_node=$GPUS --master_port=$PORT \
$(dirname "$0")/clip_feature_extraction.py $CONFIG $CHECKPOINT \
--launcher pytorch ${@:4}