Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
161cb80b
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
161cb80b
编写于
8月 20, 2019
作者:
W
wangguanzhong
提交者:
GitHub
8月 20, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix detection doc (#3153)
上级
80628bc6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
2 addition
and
4 deletion
+2
-4
PaddleCV/PaddleDetection/docs/GETTING_STARTED.md
PaddleCV/PaddleDetection/docs/GETTING_STARTED.md
+1
-2
PaddleCV/PaddleDetection/docs/GETTING_STARTED_cn.md
PaddleCV/PaddleDetection/docs/GETTING_STARTED_cn.md
+1
-2
未找到文件。
PaddleCV/PaddleDetection/docs/GETTING_STARTED.md
浏览文件 @
161cb80b
...
@@ -37,7 +37,7 @@ python tools/train.py -c configs/faster_rcnn_r50_1x.yml -o use_gpu=false
...
@@ -37,7 +37,7 @@ python tools/train.py -c configs/faster_rcnn_r50_1x.yml -o use_gpu=false
-
`--eval`
: Whether to perform evaluation in training, default is
`False`
-
`--eval`
: Whether to perform evaluation in training, default is
`False`
-
`--output_eval`
: If perform evaluation in training, this edits evaluation directory, default is current directory.
-
`--output_eval`
: If perform evaluation in training, this edits evaluation directory, default is current directory.
-
`-d`
or
`--dataset_dir`
: Dataset path, same as
`dataset_dir`
of configs. Such as:
`-d dataset/coco`
-
`-d`
or
`--dataset_dir`
: Dataset path, same as
`dataset_dir`
of configs. Such as:
`-d dataset/coco`
-
`-o`
: Set configuration options in config file. Such as:
`-o
weights=output/faster_rcnn_r50_1x/model_final
`
-
`-o`
: Set configuration options in config file. Such as:
`-o
max_iters=180000
`
##### Examples
##### Examples
...
@@ -60,7 +60,6 @@ the best model with highest MAP is saved at each `snapshot_iter`. `best_model` h
...
@@ -60,7 +60,6 @@ the best model with highest MAP is saved at each `snapshot_iter`. `best_model` h
export
CUDA_VISIBLE_DEVICES
=
0,1,2,3,4,5,6,7
export
CUDA_VISIBLE_DEVICES
=
0,1,2,3,4,5,6,7
export
PYTHONPATH
=
$PYTHONPATH
:.
export
PYTHONPATH
=
$PYTHONPATH
:.
python
-u
tools/train.py
-c
configs/faster_rcnn_r50_1x.yml
\
python
-u
tools/train.py
-c
configs/faster_rcnn_r50_1x.yml
\
-o
weights
=
output/faster_rcnn_r50_1x/model_final
\
-d
dataset/coco
-d
dataset/coco
```
```
...
...
PaddleCV/PaddleDetection/docs/GETTING_STARTED_cn.md
浏览文件 @
161cb80b
...
@@ -38,7 +38,7 @@ python tools/train.py -c configs/faster_rcnn_r50_1x.yml -o use_gpu=false
...
@@ -38,7 +38,7 @@ python tools/train.py -c configs/faster_rcnn_r50_1x.yml -o use_gpu=false
-
`--eval`
: 是否边训练边测试,默认是
`False`
-
`--eval`
: 是否边训练边测试,默认是
`False`
-
`--output_eval`
: 如果边训练边测试, 这个参数可以编辑评测保存json路径, 默认是当前目录。
-
`--output_eval`
: 如果边训练边测试, 这个参数可以编辑评测保存json路径, 默认是当前目录。
-
`-d`
or
`--dataset_dir`
: 数据集路径, 同配置文件里的
`dataset_dir`
. 例如:
`-d dataset/coco`
-
`-d`
or
`--dataset_dir`
: 数据集路径, 同配置文件里的
`dataset_dir`
. 例如:
`-d dataset/coco`
-
`-o`
: 设置配置文件里的参数内容。 例如:
`-o
weights=output/faster_rcnn_r50_1x/model_final
`
-
`-o`
: 设置配置文件里的参数内容。 例如:
`-o
max_iters=180000
`
##### 例子
##### 例子
...
@@ -57,7 +57,6 @@ python -u tools/train.py -c configs/faster_rcnn_r50_1x.yml --eval
...
@@ -57,7 +57,6 @@ python -u tools/train.py -c configs/faster_rcnn_r50_1x.yml --eval
export
CUDA_VISIBLE_DEVICES
=
0,1,2,3,4,5,6,7
export
CUDA_VISIBLE_DEVICES
=
0,1,2,3,4,5,6,7
export
PYTHONPATH
=
$PYTHONPATH
:.
export
PYTHONPATH
=
$PYTHONPATH
:.
python
-u
tools/train.py
-c
configs/faster_rcnn_r50_1x.yml
\
python
-u
tools/train.py
-c
configs/faster_rcnn_r50_1x.yml
\
-o
weights
=
output/faster_rcnn_r50_1x/model_final
\
-d
dataset/coco
-d
dataset/coco
```
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录