代码拉取完成,页面将自动刷新
#!/bin/bash
if [ $epoch_time ]; then
EPOCH_TIME=$epoch_time
else
EPOCH_TIME=150
fi
if [ $out_dir ]; then
OUT_DIR=$out_dir
else
OUT_DIR='./model_out'
fi
if [ $cfg ]; then
CFG=$cfg
else
CFG='configs/swin_tiny_patch4_window7_224_lite.yaml'
fi
if [ $data_dir ]; then
DATA_DIR=$data_dir
else
DATA_DIR='datasets/Synapse'
fi
if [ $learning_rate ]; then
LEARNING_RATE=$learning_rate
else
LEARNING_RATE=0.05
fi
if [ $img_size ]; then
IMG_SIZE=$img_size
else
IMG_SIZE=224
fi
if [ $batch_size ]; then
BATCH_SIZE=$batch_size
else
BATCH_SIZE=24
fi
echo "start train model"
python train.py --dataset Synapse --cfg $CFG --root_path $DATA_DIR --max_epochs $EPOCH_TIME --output_dir $OUT_DIR --img_size $IMG_SIZE --base_lr $LEARNING_RATE --batch_size $BATCH_SIZE
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。