File size: 319 Bytes
7c2871f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/usr/bin/env bash
# Train CTA on 8 GPUs (or whatever CUDA_VISIBLE_DEVICES limits us to).
set -euo pipefail
cd "$(dirname "$0")/.."
# load .env if present
[ -f .env ] && set -a && . ./.env && set +a
python3 src/train.py \
method=cta \
data=fairtalking \
trainer=ddp \
backbone=timesformer \
"$@"
|