README.md 4.6 KB
Newer Older
Z
ZeyuChen 已提交
1
<p align="center">
Z
Zeyu Chen 已提交
2
  <img src="./docs/images/paddlex.png" width="360" height ="60" alt="PaddleX" align="middle" />
Z
ZeyuChen 已提交
3
</p>
J
Jason 已提交
4

J
Jason 已提交
5 6 7 8
[![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)
L
LaraStuStu 已提交
9

Z
Zeyu Chen 已提交
10
PaddleX是基于飞桨核心框架、开发套件和工具组件的深度学习全流程开发工具。具备**全流程打通****融合产业实践****易用易集成**三大特点。
Z
Zeyu Chen 已提交
11

Z
ZeyuChen 已提交
12
## 特点
Z
Zeyu Chen 已提交
13

J
jiangjiajun 已提交
14
- **全流程打通**
Z
Zeyu Chen 已提交
15 16 17 18
  - **数据准备**:支持[EasyData智能数据服务平台](https://ai.baidu.com/easydata/)数据协议,通过平台便捷完成智能标注,低质数据清洗工作, 同时兼容主流标注工具协议, 助力开发者更快完成数据准备工作。
  - **模型训练**:集成[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)便捷完成高性能的多端安全部署。
Z
Zeyu Chen 已提交
19

J
jiangjiajun 已提交
20
- **融合产业实践**
Z
Zeyu Chen 已提交
21
  - 精选飞桨产业实践的成熟模型结构,开放案例实践教程,加速开发者产业落地。
Z
Zeyu Chen 已提交
22

Z
Zeyu Chen 已提交
23
- **易用易集成**
Z
ZeyuChen 已提交
24
  - 统一易用的全流程API,5步完成模型训练,10行代码实现Python/C++高性能部署。
Z
Zeyu Chen 已提交
25
  - 提供以PaddleX为核心集成的跨平台可视化工具PaddleX-GUI,快速体验飞桨深度学习全流程。
Z
ZeyuChen 已提交
26 27


Z
Zeyu Chen 已提交
28 29 30 31 32 33
## 安装

PaddleX提供两种开发模式,满足不同场景和用户需求:

- **Python开发模式:** 通过Python API方式完成全流程使用或集成,该模型提供全面、灵活、开放的深度学习功能,有更高的定制化空间。

Z
Zeyu Chen 已提交
34
- **Padlde-GUI模式:** PaddleX-GUI支持`Python开发模式`下的常用功能,以更低门槛的方式快速完成产业验证的模型训练。
Z
Zeyu Chen 已提交
35 36 37 38 39

开发者可根据自身需要按需选择不同的模式进行安装使用。


### Python开发模式安装
Z
Zeyu Chen 已提交
40 41

**前置依赖**
Z
ZeyuChen 已提交
42
* paddlepaddle >= 1.8.0
Z
Zeyu Chen 已提交
43 44 45 46
* python >= 3.5
* cython
* pycocotools

J
Jason 已提交
47 48 49
```
pip install paddlex -i https://mirror.baidu.com/pypi/simple
```
J
jiangjiajun 已提交
50
安装的相关问题参考[PaddleX安装](https://paddlex.readthedocs.io/zh_CN/latest/install.html)
J
Jason 已提交
51

Z
Zeyu Chen 已提交
52
### PaddleX-GUI安装
Z
Zeyu Chen 已提交
53 54

进入PaddleX官网[下载使用](https://www.paddlepaddle.org.cn/paddle/paddlex),申请下载绿色安装包,开箱即用。
Z
Zeyu Chen 已提交
55
Paddle-GUI的使用教程可参考[PaddleX-GUI模式使用教程](https://paddlex.readthedocs.io/zh_CN/latest/paddlex_gui/index.html)
L
LaraStuStu 已提交
56

J
jiangjiajun 已提交
57
## 使用文档
Z
Zeyu Chen 已提交
58

J
Jason 已提交
59
推荐访问[PaddleX在线使用文档](https://paddlex.readthedocs.io/zh_CN/latest/index.html),快速查阅读使用教程和API文档说明。
L
LaraStuStu 已提交
60

Z
Zeyu Chen 已提交
61 62 63 64
- [10分钟快速上手使用](https://paddlex.readthedocs.io/zh_CN/latest/quick_start.html)
- [PaddleX全流程开发教程](https://paddlex.readthedocs.io/zh_CN/latest/tutorials/index.html)
- [PaddleX视觉方案介绍](https://paddlex.readthedocs.io/zh_CN/latest/cv_solutions.html)
- [PaddleX API参考文档](https://paddlex.readthedocs.io/zh_CN/latest/apis/index.html)
L
LaraStuStu 已提交
65

Z
Zeyu Chen 已提交
66 67 68 69 70 71 72
## 在线教程

基于AIStudio平台,快速在线体验PaddleX的Python开发模式教程。

- [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 已提交
73

Z
ZeyuChen 已提交
74
## 交流与反馈
L
LaraStuStu 已提交
75

J
Jason 已提交
76
- 项目官网: https://www.paddlepaddle.org.cn/paddle/paddlex
Z
Zeyu Chen 已提交
77
- PaddleX用户交流群: 1045148026 (手机QQ扫描如下二维码快速加入)  
Z
ZeyuChen 已提交
78
<img src="./docs/images/QQGroup.jpeg" width="195" height="300" alt="QQGroup" align="center" />
L
LaraStuStu 已提交
79

Z
Zeyu Chen 已提交
80
## FAQ
L
LaraStuStu 已提交
81

Z
Zeyu Chen 已提交
82
## 更新日志
Z
Zeyu Chen 已提交
83
* 2020.05.20
L
LaraStuStu 已提交
84

Z
Zeyu Chen 已提交
85
  **`v1.0.0`**
J
Jason 已提交
86
  * 正式版本发布。
J
jiangjiajun 已提交
87

Z
Zeyu Chen 已提交
88
## 贡献代码
Z
Zeyu Chen 已提交
89

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