INSTALL_cn.md 5.4 KB
Newer Older
G
Guanghua Yu 已提交
1
# 安装说明
K
Kaipeng Deng 已提交
2 3

---
W
wangguanzhong 已提交
4
## 目录
K
Kaipeng Deng 已提交
5

G
Guanghua Yu 已提交
6
- [简介](#简介)
K
Kaipeng Deng 已提交
7
- [PaddlePaddle](#paddlepaddle)
G
Guanghua Yu 已提交
8 9 10
- [其他依赖安装](#其他依赖安装)
- [PaddleDetection](#PaddleDetection)
- [数据集](#数据集)
K
Kaipeng Deng 已提交
11 12 13 14 15 16


## 简介

这份文档介绍了如何安装PaddleDetection及其依赖项(包括PaddlePaddle),以及COCO和Pascal VOC数据集。

G
Guanghua Yu 已提交
17
PaddleDetection的相关信息,请参考[README.md](https://github.com/PaddlePaddle/PaddleDetection/blob/master/).
K
Kaipeng Deng 已提交
18 19 20 21 22


## PaddlePaddle


W
wangguanzhong 已提交
23
运行PaddleDetection需要PaddlePaddle Fluid v.1.6及更高版本。请按照[安装文档](http://www.paddlepaddle.org.cn/)中的说明进行操作。
K
Kaipeng Deng 已提交
24 25 26 27 28

请确保您的PaddlePaddle安装成功并且版本不低于需求版本。使用以下命令进行验证。

```
# 在您的Python解释器中确认PaddlePaddle安装成功
W
wangguanzhong 已提交
29
>>> import paddle.fluid as fluid
K
Kaipeng Deng 已提交
30 31 32 33 34 35
>>> fluid.install_check.run_check()

# 确认PaddlePaddle版本
python -c "import paddle; print(paddle.__version__)"
```

G
Guanghua Yu 已提交
36
**环境需求:**
K
Kaipeng Deng 已提交
37

38
- Python2 or Python3 (windows系统仅支持Python3)
K
Kaipeng Deng 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
- CUDA >= 8.0
- cuDNN >= 5.0
- nccl >= 2.1.2


## 其他依赖安装

[COCO-API](https://github.com/cocodataset/cocoapi):

运行需要COCO-API,安装方式如下:

    git clone https://github.com/cocodataset/cocoapi.git
    cd cocoapi/PythonAPI
    # 若Cython未安装,请安装Cython
    pip install Cython
    # 安装至全局site-packages
    make install
    # 若您没有权限或更倾向不安装至全局site-packages
    python setup.py install --user

59 60 61 62 63 64
**windows用户安装COCO-API方式:**

    # 若Cython未安装,请安装Cython
    pip install Cython
    # 由于原版cocoapi不支持windows,采用第三方实现版本,该版本仅支持Python3
    pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
K
Kaipeng Deng 已提交
65 66 67 68 69

## PaddleDetection

**克隆Paddle models模型库:**

70
您可以通过以下命令克隆PaddleDetection:
K
Kaipeng Deng 已提交
71 72

```
73 74
cd <path/to/clone/PaddleDetection>
git clone https://github.com/PaddlePaddle/PaddleDetection.git
K
Kaipeng Deng 已提交
75 76 77 78
```

**安装Python依赖库:**

G
Guanghua Yu 已提交
79
Python依赖库在[requirements.txt](https://github.com/PaddlePaddle/PaddleDetection/blob/master/requirements.txt)中给出,可通过如下命令安装:
K
Kaipeng Deng 已提交
80 81 82 83 84

```
pip install -r requirements.txt
```

85 86 87 88 89 90 91 92 93
**指定当前Python路径:**

```shell
# 在Linux/Mac系统下运行:
export PYTHONPATH=$PYTHONPATH:.
# 在windows系统下运行:
set PYTHONPATH=%PYTHONPATH%;.
```

K
Kaipeng Deng 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
**确认测试通过:**

```
python ppdet/modeling/tests/test_architectures.py
```

## 数据集


PaddleDetection默认支持[COCO](http://cocodataset.org)[Pascal VOC](http://host.robots.ox.ac.uk/pascal/VOC/)
请按照如下步骤设置数据集。

**为本地数据集创建软链接:**


配置文件中默认的数据集路径是`dataset/coco``dataset/voc`,如果您本地磁盘上已有数据集,
只需创建软链接至数据集目录:

```
ln -sf <path/to/coco> <path/to/paddle_detection>/dataset/coco
ln -sf <path/to/voc> <path/to/paddle_detection>/dataset/voc
```

K
Kaipeng Deng 已提交
117 118 119 120 121 122 123
对于Pascal VOC数据集,需通过如下命令创建文件列表:

```
export PYTHONPATH=$PYTHONPATH:.
python dataset/voc/create_list.py
```

K
Kaipeng Deng 已提交
124 125 126 127 128 129 130
**手动下载数据集:**

若您本地没有数据集,可通过如下命令下载:

- COCO

```
K
Kaipeng Deng 已提交
131 132
export PYTHONPATH=$PYTHONPATH:.
python dataset/coco/download_coco.py
K
Kaipeng Deng 已提交
133 134
```

K
Kaipeng Deng 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
`COCO` 数据集目录结构如下:

  ```
  dataset/coco/
  ├── annotations
  │   ├── instances_train2014.json
  │   ├── instances_train2017.json
  │   ├── instances_val2014.json
  │   ├── instances_val2017.json
  │   |   ...
  ├── train2017
  │   ├── 000000000009.jpg
  │   ├── 000000580008.jpg
  │   |   ...
  ├── val2017
  │   ├── 000000000139.jpg
  │   ├── 000000000285.jpg
  │   |   ...
  |   ...
  ```

K
Kaipeng Deng 已提交
156 157 158
- Pascal VOC

```
K
Kaipeng Deng 已提交
159 160
export PYTHONPATH=$PYTHONPATH:.
python dataset/voc/download_voc.py
K
Kaipeng Deng 已提交
161
python dataset/voc/create_list.py
K
Kaipeng Deng 已提交
162 163
```

K
Kaipeng Deng 已提交
164 165 166 167 168 169 170 171 172 173 174 175
`Pascal VOC` 数据集目录结构如下:

  ```
  dataset/voc/
  ├── train.txt
  ├── val.txt
  ├── test.txt
  ├── label_list.txt (optional)
  ├── VOCdevkit/VOC2007
  │   ├── Annotations
  │       ├── 001789.xml
  │       |   ...
W
wangguanzhong 已提交
176
  │   ├── JPEGImages
K
Kaipeng Deng 已提交
177 178 179 180 181 182 183 184
  │       ├── 001789.xml
  │       |   ...
  │   ├── ImageSets
  │       |   ...
  ├── VOCdevkit/VOC2012
  │   ├── Annotations
  │       ├── 003876.xml
  │       |   ...
W
wangguanzhong 已提交
185
  │   ├── JPEGImages
K
Kaipeng Deng 已提交
186 187 188 189 190 191 192 193 194
  │       ├── 003876.xml
  │       |   ...
  │   ├── ImageSets
  │       |   ...
  |   ...
  ```

**说明:** 如果你在yaml配置文件中设置`use_default_label=False`, 将从`label_list.txt`
中读取类别列表,反之则可以没有`label_list.txt`文件,检测库会使用Pascal VOC数据集的默
G
Guanghua Yu 已提交
195
认类别列表,默认类别列表定义在[voc.py](https://github.com/PaddlePaddle/PaddleDetection/blob/master/ppdet/data/source/voc.py)
K
Kaipeng Deng 已提交
196

K
Kaipeng Deng 已提交
197 198 199 200 201 202 203 204
**自动下载数据集:**

若您在数据集未成功设置(例如,在`dataset/coco``dataset/voc`中找不到)的情况下开始运行,
PaddleDetection将自动从[COCO-2017](http://images.cocodataset.org)
[VOC2012](http://host.robots.ox.ac.uk/pascal/VOC)下载,解压后的数据集将被保存在
`〜/.cache/paddle/dataset/`目录下,下次运行时,也可自动从该目录发现数据集。


G
Guanghua Yu 已提交
205
**说明:** 更多有关数据集的介绍,请参考[数据处理文档](../advanced_tutorials/READER.md)