Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSeg
提交
164ade2c
P
PaddleSeg
项目概览
PaddlePaddle
/
PaddleSeg
通知
286
Star
8
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSeg
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
164ade2c
编写于
9月 18, 2019
作者:
W
wuyefeilin
提交者:
Zeyu Chen
9月 18, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update Traning tutorial (#38)
* Update finetune_deeplabv3plus.md * Update finetune_icnet.md * Update finetune_unet.md
上级
b414980d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
9 deletion
+9
-9
turtorial/finetune_deeplabv3plus.md
turtorial/finetune_deeplabv3plus.md
+4
-4
turtorial/finetune_icnet.md
turtorial/finetune_icnet.md
+4
-4
turtorial/finetune_unet.md
turtorial/finetune_unet.md
+1
-1
未找到文件。
turtorial/finetune_deeplabv3plus.md
浏览文件 @
164ade2c
...
...
@@ -47,7 +47,7 @@ python pretrained_model/download_model.py deeplabv3p_xception65_bn_coco
数据集的配置和数据路径有关,在本教程中,数据存放在
`dataset/mini_pet`
中
其他配置则根据数据集和机器环境的情况进行调节,最终我们保存一个如下内容的yaml配置文件,存放路径为
**configs/
test_deeplabv3p
_pet.yaml**
其他配置则根据数据集和机器环境的情况进行调节,最终我们保存一个如下内容的yaml配置文件,存放路径为
**configs/
deeplabv3p_xception65
_pet.yaml**
```
yaml
# 数据集配置
...
...
@@ -91,7 +91,7 @@ SOLVER:
在开始训练和评估之前,我们还需要对配置和数据进行一次校验,确保数据和配置是正确的。使用下述命令启动校验流程
```
shell
python pdseg/check.py
--cfg
./configs/
test_deeplabv3p
_pet.yaml
python pdseg/check.py
--cfg
./configs/
deeplabv3p_xception65
_pet.yaml
```
...
...
@@ -100,7 +100,7 @@ python pdseg/check.py --cfg ./configs/test_deeplabv3p_pet.yaml
校验通过后,使用下述命令启动训练
```
shell
python pdseg/train.py
--use_gpu
--cfg
./configs/
test_deeplabv3p
_pet.yaml
python pdseg/train.py
--use_gpu
--cfg
./configs/
deeplabv3p_xception65
_pet.yaml
```
## 六. 进行评估
...
...
@@ -108,7 +108,7 @@ python pdseg/train.py --use_gpu --cfg ./configs/test_deeplabv3p_pet.yaml
模型训练完成,使用下述命令启动评估
```
shell
python pdseg/eval.py
--use_gpu
--cfg
./configs/
test_deeplabv3p
_pet.yaml
python pdseg/eval.py
--use_gpu
--cfg
./configs/
deeplabv3p_xception65
_pet.yaml
```
## 模型组合
...
...
turtorial/finetune_icnet.md
浏览文件 @
164ade2c
...
...
@@ -47,7 +47,7 @@ python pretrained_model/download_model.py icnet_bn_cityscapes
数据集的配置和数据路径有关,在本教程中,数据存放在
`dataset/mini_pet`
中
其他配置则根据数据集和机器环境的情况进行调节,最终我们保存一个如下内容的yaml配置文件,存放路径为
`configs/test_pet.yaml`
其他配置则根据数据集和机器环境的情况进行调节,最终我们保存一个如下内容的yaml配置文件,存放路径为
**configs/icnet_pet.yaml**
```
yaml
# 数据集配置
...
...
@@ -93,7 +93,7 @@ SOLVER:
在开始训练和评估之前,我们还需要对配置和数据进行一次校验,确保数据和配置是正确的。使用下述命令启动校验流程
```
shell
python pdseg/check.py
--cfg
./configs/
tes
t_pet.yaml
python pdseg/check.py
--cfg
./configs/
icne
t_pet.yaml
```
...
...
@@ -102,7 +102,7 @@ python pdseg/check.py --cfg ./configs/test_pet.yaml
校验通过后,使用下述命令启动训练
```
shell
python pdseg/train.py
--use_gpu
--cfg
./configs/
tes
t_pet.yaml
python pdseg/train.py
--use_gpu
--cfg
./configs/
icne
t_pet.yaml
```
## 六. 进行评估
...
...
@@ -110,7 +110,7 @@ python pdseg/train.py --use_gpu --cfg ./configs/test_pet.yaml
模型训练完成,使用下述命令启动评估
```
shell
python pdseg/eval.py
--use_gpu
--cfg
./configs/
tes
t_pet.yaml
python pdseg/eval.py
--use_gpu
--cfg
./configs/
icne
t_pet.yaml
```
## 模型组合
...
...
turtorial/finetune_unet.md
浏览文件 @
164ade2c
...
...
@@ -47,7 +47,7 @@ python pretrained_model/download_model.py unet_bn_coco
数据集的配置和数据路径有关,在本教程中,数据存放在
`dataset/mini_pet`
中
其他配置则根据数据集和机器环境的情况进行调节,最终我们保存一个如下内容的yaml配置文件,存放路径为
`configs/test_unet_pet.yaml`
其他配置则根据数据集和机器环境的情况进行调节,最终我们保存一个如下内容的yaml配置文件,存放路径为
**configs/unet_pet.yaml**
```
yaml
# 数据集配置
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录