From 9408c43bc3955582cc7b98aa1cc88b631143bfed Mon Sep 17 00:00:00 2001 From: Guanghua Yu <742925032@qq.com> Date: Sun, 10 May 2020 11:57:55 +0800 Subject: [PATCH] [Cherry pick] fix voc doc `JPEGImages` description error (#626) * fix windows python path (#480) * fix link error * fix voc doc JPEGImages error --- .gitignore | 1 + docs/advanced_tutorials/READER.md | 6 +++--- docs/tutorials/INSTALL.md | 6 +++--- docs/tutorials/INSTALL_cn.md | 6 +++--- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 1714779d9..4c39d631f 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ __pycache__/ /lib/ /lib64/ /output/ +/inference_model/ /parts/ /sdist/ /var/ diff --git a/docs/advanced_tutorials/READER.md b/docs/advanced_tutorials/READER.md index 532ebc0eb..67e76ba96 100644 --- a/docs/advanced_tutorials/READER.md +++ b/docs/advanced_tutorials/READER.md @@ -142,16 +142,16 @@ bird │ ├── 001789.xml │ │ ... │ ├── JPEGImages - │ ├── 001789.xml + │ ├── 001789.jpg │ │ ... │ ├── ImageSets │ | ... ├── VOCdevkit/VOC2012 │ ├── Annotations - │ ├── 003876.xml + │ ├── 2011_003876.xml │ │ ... │ ├── JPEGImages - │ ├── 003876.xml + │ ├── 2011_003876.jpg │ │ ... │ ├── ImageSets │ │ ... diff --git a/docs/tutorials/INSTALL.md b/docs/tutorials/INSTALL.md index a411be02d..fa53208cd 100644 --- a/docs/tutorials/INSTALL.md +++ b/docs/tutorials/INSTALL.md @@ -176,16 +176,16 @@ python dataset/voc/create_list.py │ ├── 001789.xml │ | ... │ ├── JPEGImages - │ ├── 001789.xml + │ ├── 001789.jpg │ | ... │ ├── ImageSets │ | ... ├── VOCdevkit/VOC2012 │ ├── Annotations - │ ├── 003876.xml + │ ├── 2011_003876.xml │ | ... │ ├── JPEGImages - │ ├── 003876.xml + │ ├── 2011_003876.jpg │ | ... │ ├── ImageSets │ | ... diff --git a/docs/tutorials/INSTALL_cn.md b/docs/tutorials/INSTALL_cn.md index 222dc7d8e..7c5b71c05 100644 --- a/docs/tutorials/INSTALL_cn.md +++ b/docs/tutorials/INSTALL_cn.md @@ -174,16 +174,16 @@ python dataset/voc/create_list.py │ ├── 001789.xml │ | ... │ ├── JPEGImages - │ ├── 001789.xml + │ ├── 001789.jpg │ | ... │ ├── ImageSets │ | ... ├── VOCdevkit/VOC2012 │ ├── Annotations - │ ├── 003876.xml + │ ├── 2011_003876.xml │ | ... │ ├── JPEGImages - │ ├── 003876.xml + │ ├── 2011_003876.jpg │ | ... │ ├── ImageSets │ | ... -- GitLab