mirror of
https://github.com/open-mmlab/mmselfsup.git
synced 2025-06-03 14:59:38 +08:00
25 lines
682 B
Bash
25 lines
682 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
PARTITION=$1
|
|
CFG=$2 # use cfgs under "configs/benchmarks/classification/imagenet/*.py"
|
|
PRETRAIN=$3 # pretrained model
|
|
GPUS=${GPUS:-8}
|
|
GPUS_PER_NODE=${GPUS_PER_NODE:-8}
|
|
CPUS_PER_TASK=${CPUS_PER_TASK:-5}
|
|
SRUN_ARGS=${SRUN_ARGS:-""}
|
|
PY_ARGS=${@:4}
|
|
|
|
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH \
|
|
mim train mmcls $CFG \
|
|
--launcher slurm -G $GPUS \
|
|
--gpus-per-node $GPUS_PER_NODE \
|
|
--cpus-per-task $CPUS_PER_TASK \
|
|
--partition $PARTITION \
|
|
--srun-args "$SRUN_ARGS" \
|
|
--cfg-options model.backbone.init_cfg.type=Pretrained \
|
|
model.backbone.init_cfg.checkpoint=$PRETRAIN \
|
|
model.backbone.init_cfg.prefix="backbone." \
|
|
$PY_ARGS
|