加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
train.sh 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
血小板自动机 提交于 2024-05-30 15:26 . Fixed train.sh
#!/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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化