Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
a1fc2c30
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看板
提交
a1fc2c30
编写于
3月 11, 2021
作者:
littletomatodonkey
提交者:
Tingquan Gao
3月 11, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add cpu note, test=document_fix
上级
3388c47e
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
22 addition
and
2 deletion
+22
-2
docs/en/tutorials/quick_start_en.md
docs/en/tutorials/quick_start_en.md
+11
-0
docs/zh_CN/tutorials/quick_start.md
docs/zh_CN/tutorials/quick_start.md
+11
-2
未找到文件。
docs/en/tutorials/quick_start_en.md
浏览文件 @
a1fc2c30
...
...
@@ -63,6 +63,9 @@ export CUDA_VISIBLE_DEVICES=0
set
CUDA_VISIBLE_DEVICES
=
0
```
*
If you want to train on cpu device, you can modify the field
`use_gpu: True`
in the config file to
`use_gpu: False`
, or you can append
`-o use_gpu=False`
in the training command, which means override the value of
`use_gpu`
as False.
### Train from scratch
*
Train ResNet50_vd
...
...
@@ -71,6 +74,14 @@ set CUDA_VISIBLE_DEVICES=0
python3 tools/train.py -c ./configs/quick_start/ResNet50_vd.yaml
```
If you want to train on cpu device, the command is as follows.
```
shell
python3 tools/train.py
-c
./configs/quick_start/ResNet50_vd.yaml
-o
use_gpu
=
False
```
Similarly, for the following commands, if you want to train on cpu device, you can append
`-o use_gpu=False`
in the command.
The validation
`Top1 Acc`
curve is shown below.
![](
../../images/quick_start/r50_vd_acc.png
)
...
...
docs/zh_CN/tutorials/quick_start.md
浏览文件 @
a1fc2c30
...
...
@@ -46,8 +46,7 @@ cd ../
### 2.2 环境说明
*
下面所有的训练过程均在
`单卡V100`
机器上运行。
*
首先需要设置可用的显卡设备id
*
下面所有的训练过程均在
`单卡V100`
机器上运行。首先需要设置可用的显卡设备id。
如果使用mac或者linux,可以使用下面的命令进行设置。
...
...
@@ -61,6 +60,7 @@ export CUDA_VISIBLE_DEVICES=0
set
CUDA_VISIBLE_DEVICES
=
0
```
*
如果希望在cpu上训练,可以将配置文件中的
`use_gpu: True`
修改为
`use_gpu: False`
,或者在训练脚本后面添加
`-o use_gpu=False`
,表示传入参数,覆盖默认的
`use_gpu`
值。
## 三、模型训练
...
...
@@ -72,6 +72,15 @@ set CUDA_VISIBLE_DEVICES=0
python3 tools/train.py
-c
./configs/quick_start/ResNet50_vd.yaml
```
如果希望在cpu上训练,训练脚本如下所示。
```
shell
python3 tools/train.py
-c
./configs/quick_start/ResNet50_vd.yaml
-o
use_gpu
=
False
```
下面的训练任务中,如果希望使用cpu训练,也可以在训练脚本中添加
`-o use_gpu=False`
。
验证集的
`Top1 Acc`
曲线如下所示,最高准确率为0.2735。
![](
../../images/quick_start/r50_vd_acc.png
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录