mirror of
https://github.com/open-mmlab/mmselfsup.git
synced 2025-06-03 14:59:38 +08:00
7 lines
136 B
Bash
7 lines
136 B
Bash
#!/bin/bash
|
|
DET_CFG=$1
|
|
WEIGHTS=$2
|
|
|
|
python $(dirname "$0")/train_net.py --config-file $DET_CFG \
|
|
--num-gpus 8 MODEL.WEIGHTS $WEIGHTS
|