README.md 5.8 KB
Newer Older
L
LaraStuStu 已提交
1 2 3



Z
ZeyuChen 已提交
4
<p align="center">
L
LaraStuStu 已提交
5
  <img src="./docs/gui/images/paddlex.png" width="360" height ="55" alt="PaddleX" align="middle" />
Z
ZeyuChen 已提交
6
</p>
L
LaraStuStu 已提交
7 8


L
LaraStuStu 已提交
9
<p align= "center"> PaddleX -- 飞桨全流程开发套件,以低代码的形式支持开发者快速实现产业实际项目落地 </p>
J
Jason 已提交
10

J
Jason 已提交
11 12 13 14
[![License](https://img.shields.io/badge/license-Apache%202-red.svg)](LICENSE)
[![Version](https://img.shields.io/github/release/PaddlePaddle/PaddleX.svg)](https://github.com/PaddlePaddle/PaddleX/releases)
![python version](https://img.shields.io/badge/python-3.6+-orange.svg)
![support os](https://img.shields.io/badge/os-linux%2C%20win%2C%20mac-yellow.svg)
Z
Zeyu Chen 已提交
15
![QQGroup](https://img.shields.io/badge/QQ_Group-1045148026-52B6EF?style=social&logo=tencent-qq&logoColor=000&logoWidth=20)
L
LaraStuStu 已提交
16

L
LaraStuStu 已提交
17
集成飞桨智能视觉领域**图像分类****目标检测****语义分割****实例分割**任务能力,将深度学习开发全流程从**数据准备****模型训练与优化****多端部署**端到端打通,无需分别安装不同功能模块,并提供统一任务API接口,以**低代码**的形式为开发者提供飞桨全流程开发的最佳体验。
Z
Zeyu Chen 已提交
18

L
LaraStuStu 已提交
19
**PaddleX** 经过**质检****安防****巡检****遥感****零售****医疗**等十多个行业实际应用场景验证,沉淀产业实际经验,**并提供丰富的案例实践教程**,全程助力开发者产业实践落地。
Z
Zeyu Chen 已提交
20 21


Z
ZeyuChen 已提交
22

Z
Zeyu Chen 已提交
23 24
## 安装

L
LaraStuStu 已提交
25
**PaddleX提供两种开发模式,满足用户的不同需求:**
Z
Zeyu Chen 已提交
26

L
LaraStuStu 已提交
27 28 29
1. **Python开发模式:** 

   通过简洁易懂的Python API,在兼顾功能全面性、开发灵活性、集成方便性的基础上,给开发者最流畅的深度学习开发体验。<br>
L
LaraStuStu 已提交
30 31 32 33 34 35

  **前置依赖**
> - paddlepaddle >= 1.8.0
> - python >= 3.5
> - cython
> - pycocotools
Z
Zeyu Chen 已提交
36

J
Jason 已提交
37 38 39
```
pip install paddlex -i https://mirror.baidu.com/pypi/simple
```
L
LaraStuStu 已提交
40 41 42
详细安装方法请参考[PaddleX安装](https://paddlex.readthedocs.io/zh_CN/develop/install.html)


L
LaraStuStu 已提交
43 44 45
2. **Padlde GUI模式:**

   无代码开发的可视化客户端,应用Paddle API实现,使开发者快速进行产业项目验证,并为用户开发自有深度学习软件/应用提供参照。
J
Jason 已提交
46

L
LaraStuStu 已提交
47
- 前往[PaddleX官网](https://www.paddlepaddle.org.cn/paddle/paddlex),申请下载Paddle X GUI一键绿色安装包。
Z
Zeyu Chen 已提交
48

L
LaraStuStu 已提交
49
- 前往[PaddleX GUI使用教程](./docs/gui/how_to_use.md)了解PaddleX GUI使用详情。
L
LaraStuStu 已提交
50

L
LaraStuStu 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
- https://aistudio.baidu.com/aistudio/projectdetail/440197)

  

## 产品模块说明

- **数据准备**:兼容ImageNet、VOC、COCO等常用数据协议, 同时与Labelme、精灵标注助手、[EasyData智能数据服务平台](https://ai.baidu.com/easydata/)等无缝衔接,全方位助力开发者更快完成数据准备工作。

- **数据预处理及增强**:提供极简的图像预处理和增强方法--Transforms,适配imgaug图像增强库,支持**上百种数据增强策略**,是开发者快速缓解小样本数据训练的问题。

- **模型训练**:集成[PaddleClas](https://github.com/PaddlePaddle/PaddleClas), [PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection), [PaddleSeg](https://github.com/PaddlePaddle/PaddleSeg)视觉开发套件,提供大量精选的、经过产业实践的高质量预训练模型,使开发者更快实现工业级模型效果。

- **模型调优**:内置模型可解释性模块、[VisualDL](https://github.com/PaddlePaddle/VisualDL)可视化分析工具。使开发者可以更直观的理解模型的特征提取区域、训练过程参数变化,从而快速优化模型。

- **多端安全部署**:内置[PaddleSlim](https://github.com/PaddlePaddle/PaddleSlim)模型压缩工具和**模型加密部署模块**,与飞桨原生预测库Paddle Inference及高性能端侧推理引擎[Paddle Lite](https://github.com/PaddlePaddle/Paddle-Lite) 无缝打通,使开发者快速实现模型的多端、高性能、安全部署。

  
L
LaraStuStu 已提交
68

L
LaraStuStu 已提交
69
## 完整使用文档及API说明
Z
Zeyu Chen 已提交
70

L
LaraStuStu 已提交
71
- [完整PaddleX在线使用文档目录](https://paddlex.readthedocs.io/zh_CN/develop/index.html)
L
LaraStuStu 已提交
72

L
LaraStuStu 已提交
73
- [10分钟快速上手系列教程](https://paddlex.readthedocs.io/zh_CN/develop/quick_start.html)
J
jiangjiajun 已提交
74
- [PaddleX模型训练教程集合](https://paddlex.readthedocs.io/zh_CN/develop/train/index.html)
L
LaraStuStu 已提交
75
- [PaddleX API接口说明](https://paddlex.readthedocs.io/zh_CN/develop/apis/index.html)
L
LaraStuStu 已提交
76

L
LaraStuStu 已提交
77
### 在线项目示例
Z
Zeyu Chen 已提交
78

L
LaraStuStu 已提交
79
为了使开发者更快掌握PaddleX API,我们创建了一系列完整的示例教程,您可通过AIStudio一站式开发平台,快速在线运行PaddleX的项目。
Z
Zeyu Chen 已提交
80

L
LaraStuStu 已提交
81
- [PaddleX快速上手CV模型训练](https://aistudio.baidu.com/aistudio/projectdetail/450925)
Z
Zeyu Chen 已提交
82 83 84
- [PaddleX快速上手——MobileNetV3-ssld 化妆品分类](https://aistudio.baidu.com/aistudio/projectdetail/450220)
- [PaddleX快速上手——Faster-RCNN AI识虫](https://aistudio.baidu.com/aistudio/projectdetail/439888)
- [PaddleX快速上手——DeepLabv3+ 视盘分割](https://aistudio.baidu.com/aistudio/projectdetail/440197)
L
LaraStuStu 已提交
85

L
LaraStuStu 已提交
86 87 88 89 90 91


## 全流程产业应用案例

(continue to be updated)

L
LaraStuStu 已提交
92 93
* 工业巡检:
  * [工业表计读数](https://paddlex.readthedocs.io/zh_CN/develop/examples/meter_reader.html)
L
LaraStuStu 已提交
94

L
LaraStuStu 已提交
95 96
* 工业质检:
  * 电池隔膜缺陷检测(Comming Soon)
L
LaraStuStu 已提交
97

L
LaraStuStu 已提交
98
* [人像分割](https://paddlex.readthedocs.io/zh_CN/develop/examples/human_segmentation.html)
L
LaraStuStu 已提交
99 100 101 102 103 104 105



## [FAQ](./docs/gui/faq.md)



Z
ZeyuChen 已提交
106
## 交流与反馈
L
LaraStuStu 已提交
107

J
Jason 已提交
108
- 项目官网: https://www.paddlepaddle.org.cn/paddle/paddlex
Z
Zeyu Chen 已提交
109
- PaddleX用户交流群: 1045148026 (手机QQ扫描如下二维码快速加入)  
L
LaraStuStu 已提交
110 111
  ![](./docs/gui/images/QR.jpg)

L
LaraStuStu 已提交
112

L
LaraStuStu 已提交
113

Z
Zeyu Chen 已提交
114
## 更新日志
L
LaraStuStu 已提交
115

J
jiangjiajun 已提交
116
> [历史版本及更新内容](https://paddlex.readthedocs.io/zh_CN/develop/change_log.html)
L
LaraStuStu 已提交
117

J
Jason 已提交
118
- 2020.07.13 v1.1.0
J
jiangjiajun 已提交
119 120 121
- 2020.07.12 v1.0.8
- 2020.05.20 v1.0.0
- 2020.05.17 v0.1.8
J
jiangjiajun 已提交
122

L
LaraStuStu 已提交
123 124


Z
Zeyu Chen 已提交
125
## 贡献代码
Z
Zeyu Chen 已提交
126

Z
Zeyu Chen 已提交
127
我们非常欢迎您为PaddleX贡献代码或者提供使用建议。如果您可以修复某个issue或者增加一个新功能,欢迎给我们提交Pull Requests.