Skip to content

Commit d2c20b5

Browse files
authored
fix deadlink, test=document_fix (#6815)
1 parent d4e34fe commit d2c20b5

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

README_cn.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,6 @@
414414
- [快速体验](docs/tutorials/QUICK_STARTED_cn.md)
415415
- [数据准备](docs/tutorials/data/README.md)
416416
- [PaddleDetection全流程使用](docs/tutorials/GETTING_STARTED_cn.md)
417-
- [自定义数据训练](docs/tutorials/CustomizeDataTraining.md)
418417
- [FAQ/常见问题汇总](docs/tutorials/FAQ)
419418

420419
### 进阶教程
@@ -447,7 +446,7 @@
447446
- [目标检测](docs/advanced_tutorials/customization/detection.md)
448447
- [关键点检测](docs/advanced_tutorials/customization/keypoint_detection.md)
449448
- [多目标跟踪](docs/advanced_tutorials/customization/pphuman_mot.md)
450-
- [行为识别](docs/advanced_tutorials/customization/pphuman_action.md)
449+
- [行为识别](docs/advanced_tutorials/customization/action_recognotion/)
451450
- [属性识别](docs/advanced_tutorials/customization/pphuman_attribute.md)
452451

453452
### 课程专栏

README_en.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,6 @@ Please refer to [docs](deploy/pipeline/README_en.md) for details.
407407
- [Quick start](docs/tutorials/QUICK_STARTED_cn.md)
408408
- [Data preparation](docs/tutorials/data/README.md)
409409
- [Geting Started on PaddleDetection](docs/tutorials/GETTING_STARTED_cn.md)
410-
- [Customize data training]((docs/tutorials/CustomizeDataTraining.md)
411410
- [FAQ]((docs/tutorials/FAQ)
412411

413412
### Advanced tutorials
@@ -446,7 +445,7 @@ Please refer to [docs](deploy/pipeline/README_en.md) for details.
446445
- [Object detection](docs/advanced_tutorials/customization/detection.md)
447446
- [Keypoint detection](docs/advanced_tutorials/customization/keypoint_detection.md)
448447
- [Multiple object tracking](docs/advanced_tutorials/customization/pphuman_mot.md)
449-
- [Action recognition](docs/advanced_tutorials/customization/pphuman_action.md)
448+
- [Action recognition](docs/advanced_tutorials/customization/action_recognotion/)
450449
- [Attribute recognition](docs/advanced_tutorials/customization/pphuman_attribute.md)
451450

452451
### Courses

docs/tutorials/data/PrepareDetDataSet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
| x1,y1,w,h | (x1,y1)为左上角坐标,w为目标区域宽度,h为目标区域高度 |
3030
| xc,yc,w,h | (xc,yc)为目标区域中心坐标,w为目标区域宽度,h为目标区域高度 |
3131

32-
常见的目标检测数据集如Pascal VOC采用的`[x1,y1,x2,y2]` 表示物体的bounding box, COCO采用的`[x1,y1,w,h]` 表示物体的bounding box, Cformat](https://cocodataset.org/#format-data).
32+
常见的目标检测数据集如Pascal VOC采用的`[x1,y1,x2,y2]` 表示物体的bounding box, [COCO](https://cocodataset.org/#format-data)采用的`[x1,y1,w,h]` 表示物体的bounding box.
3333

3434
### 准备训练数据
3535

docs/tutorials/data/PrepareDetDataSet_en.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The general object position is represented by a rectangular box, which is genera
2727
| x1,y1,w,h | (x1,y1)is the top left coordinate, w is width of object, h is height of object |
2828
| xc,yc,w,h | (xc,yc)is center of object, w is width of object, h is height of object |
2929

30-
Common object detection datasets such as Pascal VOC, adopting `[x1,y1,x2,y2]` to express the bounding box of object. COCO uses `[x1,y1,w,h]` , [format](https://cocodataset.org/#format-data).
30+
Common object detection datasets such as Pascal VOC, adopting `[x1,y1,x2,y2]` to express the bounding box of object. COCO uses `[x1,y1,w,h]`, [format](https://cocodataset.org/#format-data).
3131

3232
### Prepare Training Data
3333
PaddleDetection is supported [COCO](http://cocodataset.org) and [Pascal VOC](http://host.robots.ox.ac.uk/pascal/VOC/) and [WIDER-FACE](http://shuoyang1213.me/WIDERFACE/) datasets by default.

0 commit comments

Comments
 (0)