Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
b67b1df3
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b67b1df3
编写于
6月 30, 2021
作者:
littletomatodonkey
提交者:
GitHub
6月 30, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add finetune doc and fix vit typo (#996)
上级
38fa8564
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
24 addition
and
5 deletion
+24
-5
docs/en/application/mainbody_detection_en.md
docs/en/application/mainbody_detection_en.md
+11
-3
docs/zh_CN/application/mainbody_detection.md
docs/zh_CN/application/mainbody_detection.md
+12
-1
ppcls/configs/ImageNet/VisionTransformer/ViT_base_patch16_384.yaml
...figs/ImageNet/VisionTransformer/ViT_base_patch16_384.yaml
+1
-1
未找到文件。
docs/en/application/mainbody_detection_en.md
浏览文件 @
b67b1df3
...
...
@@ -64,9 +64,7 @@ cd PaddleDetection
pip
install
-r
requirements.txt
```
For more installation tutorials, please refer to
[
Installation tutorial
](
)
更多安装教程,请参考:
[
安装文档
](
https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.1/docs/tutorials/INSTALL.md
)
For more installation tutorials, please refer to
[
Installation tutorial
](
https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.1/docs/tutorials/INSTALL.md
)
### 3.2 Prepare for the dataset
...
...
@@ -126,6 +124,16 @@ python -m paddle.distributed.launch --gpus 0,1,2,3 tools/train.py -c configs/ppy
--eval:eval during training
*
(
**Recommend**
) Model finetune
If you want to finetune the model on your own dataset, you can run the following command to train the model.
```
bash
export
CUDA_VISIBLE_DEVICES
=
0
# assign pretrain_weights, load the general mainbody-detection pretrained model
python tools/train.py
-c
configs/ppyolo/ppyolov2_r50vd_dcn_365e_coco.yml
-o
pretrain_weights
=
https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/rec/models/pretrain/ppyolov2_r50vd_dcn_mainbody_v1.0_pretrained.pdparams
```
*
Resume training: you can use
`-r`
to load checkpoints and resume training.
```
bash
...
...
docs/zh_CN/application/mainbody_detection.md
浏览文件 @
b67b1df3
...
...
@@ -117,7 +117,18 @@ export CUDA_VISIBLE_DEVICES=0,1,2,3
python
-m
paddle.distributed.launch
--gpus
0,1,2,3 tools/train.py
-c
configs/ppyolo/ppyolov2_r50vd_dcn_365e_coco.yml
--eval
```
--eval:表示边训练边验证
--eval:表示边训练边验证。
*
(
**推荐**
)模型微调
如果希望加载PaddleClas中已经训练好的主体检测模型,在自己的数据集上进行模型微调,可以使用下面的命令进行训练。
```
bash
export
CUDA_VISIBLE_DEVICES
=
0
# 指定pretrain_weights参数,加载通用的主体检测预训练模型
python tools/train.py
-c
configs/ppyolo/ppyolov2_r50vd_dcn_365e_coco.yml
-o
pretrain_weights
=
https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/rec/models/pretrain/ppyolov2_r50vd_dcn_mainbody_v1.0_pretrained.pdparams
```
*
模型恢复训练
...
...
ppcls/configs/ImageNet/VisionTransformer/ViT_base_patch16_384.yaml
浏览文件 @
b67b1df3
...
...
@@ -16,7 +16,7 @@ Global:
# model architecture
Arch
:
name
:
ViT_base_patch16_
22
4
name
:
ViT_base_patch16_
38
4
class_num
:
1000
# loss function config for traing/eval process
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录