From 81160910a339815fabe4ee22ddca5026019b99d7 Mon Sep 17 00:00:00 2001 From: wuyefeilin <30919197+wuyefeilin@users.noreply.github.com> Date: Wed, 18 Sep 2019 17:34:13 +0800 Subject: [PATCH] Update finetune_unet.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --cfg ./configs/test_unet_pet.yaml 改成 --cfg ./configs/unet_pet.yaml,与configs提供的名字保持一致 --- turtorial/finetune_unet.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/turtorial/finetune_unet.md b/turtorial/finetune_unet.md index e0c4ac90..b459fc0d 100644 --- a/turtorial/finetune_unet.md +++ b/turtorial/finetune_unet.md @@ -90,7 +90,7 @@ SOLVER: 在开始训练和评估之前,我们还需要对配置和数据进行一次校验,确保数据和配置是正确的。使用下述命令启动校验流程 ```shell -python pdseg/check.py --cfg ./configs/test_unet_pet.yaml +python pdseg/check.py --cfg ./configs/unet_pet.yaml ``` @@ -99,7 +99,7 @@ python pdseg/check.py --cfg ./configs/test_unet_pet.yaml 校验通过后,使用下述命令启动训练 ```shell -python pdseg/train.py --use_gpu --cfg ./configs/test_unet_pet.yaml +python pdseg/train.py --use_gpu --cfg ./configs/unet_pet.yaml ``` ## 六. 进行评估 @@ -107,7 +107,7 @@ python pdseg/train.py --use_gpu --cfg ./configs/test_unet_pet.yaml 模型训练完成,使用下述命令启动评估 ```shell -python pdseg/eval.py --use_gpu --cfg ./configs/test_unet_pet.yaml +python pdseg/eval.py --use_gpu --cfg ./configs/unet_pet.yaml ``` ## 模型组合 -- GitLab