## PaddleNLP Pipelines:NLP流水线系统
PaddleNLP Pipelines 是一个端到端NLP流水线系统框架,面向 NLP **全场景**,帮助用户**低门槛**构建强大**产品级系统**。
<div align="center">
<img src="https://user-images.githubusercontent.com/12107462/190302765-663ba441-9dd3-470a-8fee-f7a6f81da615.gif" width="500px">
</div>
更多效果展示Demo请参考 [效果展示](#效果展示)
## NLP流水线系统特色
* **全场景支持**:依托灵活的插拔式组件产线化设计,支持各类 NLP 场景任务,包括:信息抽取、情感倾向分析、阅读理解、检索系统、问答系统、文本分类、文本生成等。
* **低门槛开发**:依托丰富的预置组件,像搭积木一样快速构建产品级系统,预置组件覆盖文档解析、数据处理、模型组网、预测部署、Web 服务、UI 界面等全流程系统功能。
* **高精度预测**:基于前沿的预训练模型、成熟的系统方案,可构建效果领先的产品级系统,如[NLP流水线系统](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#NLP流水线系统)中预置的语义检索系统、阅读理解式智能问答系统等。
* **灵活可定制**:除深度兼容 PaddleNLP 模型组件外,还可嵌入飞桨生态下任意模型、[AI 开放平台算子](https://ai.baidu.com/)、其它开源项目如 Elasticsearch 等作为基础组件,快速扩展,从而实现任意复杂系统的灵活定制开发。
## Benchmarks
<div align="center">
<img src="https://user-images.githubusercontent.com/12107462/187362675-f0818e77-a521-4479-8dd7-bcbf4a820f7d.png" width="500">
</div>
更多的Benchmarks的信息请参考文档[Benchmarks](./benchmarks/README.md)
## NLP流水线系统
PaddleNLP Pipelines NLP流水线系统针对 NLP 部分高频场景开源了经过充分打磨的产品级系统,并会不断开放其它场景的产品级系统,用户可以基于NLP流水线系统提供的系统能力快速开发出适配业务数据的产品。
* 快速搭建产品级[**语义检索**](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/examples/semantic-search)系统:使用自然语言文本通过语义进行智能文档查询,而不是关键字匹配
* 快速搭建产品级[**智能问答**](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/examples/question-answering)系统:用自然语言提问,即可获得精准答案片段
* 快速搭建产品级 [**FAQ 问答**](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/examples/FAQ)系统:用自然语言提问,匹配相关的高频问题,并返回匹配到的高频问题的答案
* 快速搭建产品级**多模态信息抽取**系统(即将开放,敬请期待)
### 效果展示
+ 语义检索
<div align="center">
<img src="https://user-images.githubusercontent.com/12107462/190302765-663ba441-9dd3-470a-8fee-f7a6f81da615.gif" width="500px">
</div>
+ 智能问答
<div align="center">
<img src="https://user-images.githubusercontent.com/12107462/190298926-a1fc92f3-5ec7-4265-8357-ab860cc1fed2.gif" width="500px">
</div>
+ FAQ智能问答
<div align="center">
<img src="https://user-images.githubusercontent.com/12107462/190307449-38135678-f259-4483-ac0f-2fa3ae4be97f.gif" width="500px">
</div>
| | |
|-|-|
| :floppy_disk: [快速安装](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#floppy_disk-安装) |安装 PaddleNLP Pipelines|
| :beginner: [快速体验](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#beginner-快速体验) |基于 Pipelines 快速搭建语义检索/智能问答等产品系统|
| :man_office_worker: [用户案例](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#man_office_worker-用户案例) |各行业用户基于PaddleNLP Pipelinse 构建的产品案例|
| :mortar_board: [Tutorials](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#mortar_board-tutorials) |像搭积木一样一步步构建 NLP 流水线系统教程|
| :bar_chart: [Benchmarks](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/benchmarks) |针对各场景模型的性能、精度评测指标|
| :telescope: [Roadmap](https://github.com/PaddlePaddle/PaddleNLP) | PaddleNLP Pipelines 产品路线图|
| :newspaper: [技术博客](https://github.com/PaddlePaddle/PaddleNLP) | 阅读 PaddleNLP Pipelines 系列技术文章|
| :vulcan_salute: [社区交流](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#vulcan_salute-社区交流) | [官方微信群](https://github.com/PaddlePaddle/PaddleNLP#社区交流), [GitHub Discussions](https://github.com/PaddlePaddle/PaddleNLP/discussions) |
## :floppy_disk: 安装
Note: 因为 pipelines 依赖较多, 安装耗时大概 10 分钟左右,安装过程中请请耐心等待。
### 环境依赖
- python >= 3.7.3
- paddlenlp >= 2.2.1
- paddlepaddle >=2.3
- CUDA Version: 10.2
- NVIDIA Driver Version: 440.64.00
- Docker 18.03 以上
### pip 安装
```
pip install --upgrade paddle-pipelines
```
### 源码安装
```
git clone https://github.com/PaddlePaddle/PaddleNLP.git
cd PaddleNLP/pipelines
python setup.py install
```
## :beginner: 快速体验
### 快速开发
您可以参考如下示例像搭积木一样快速构建语义检索流水线,通过命令行终端输出快速体验流水线系统效果
```python
from pipelines.document_stores import FAISSDocumentStore
from pipelines.nodes import DensePassageRetriever, ErnieRanker
# Step1: Preparing the data
documents = [
{'content': '金钱龟不分品种,只有生长地之分,在我国主要分布于广东、广西、福建、海南、香港、澳门等地,在国外主要分布于越南等亚热带国家和地区。',
'meta': {'name': 'test1.txt'}},
{'content': '衡量酒水的价格的因素很多的,酒水的血统(也就是那里产的,采用什么工艺等);存储的时间等等,酒水是一件很难标准化得商品,只要你敢要价,有买的那就值那个钱。',
'meta': {'name': 'test2.txt'}}
]
# Step2: Initialize a FaissDocumentStore to store texts of documents
document_store = FAISSDocumentStore(embedding_dim=768)
document_store.write_documents(documents)
# Step3: Initialize a DenseRetriever and build ANN index
retriever = DensePassageRetriever(document_store=document_store, query_embedding_model="rocketqa-zh-base-query-encoder",embed_title=False)
document_store.update_embeddings(retriever)
# Step4: Initialize a Ranker
ranker = ErnieRanker(model_name_or_path="rocketqa-base-cross-encoder")
# Step5: Initialize a SemanticSearchPipeline and ask questions
from pipelines import SemanticSearchPipeline
pipeline = SemanticSearchPipeline(retriever, ranker)
prediction = pipeline.run(query="衡量酒水的价格的因素有哪些?")
```
### 快速部署
您可以基于我们发布的 Docker 镜像一键部署智能文本流水线系统,通过 Web UI 快速体验。
#### 启动 elastic search
```
docker network create elastic
docker pull docker.elastic.co/elasticsearch/elasticsearch:8.3.3
docker run \
-d \
--name es02 \
--net elastic \
-p 9200:9200 \
-e discovery.type=single-node \
-e ES_JAVA_OPTS="-Xms256m -Xmx256m"\
-e xpack.security.enabled=false \
-e cluster.routing.allocation.disk.threshold_enabled=false \
-it \
docker.elastic.co/elasticsearch/elasticsearch:8.3.3
```
#### 部署 CPU 服务
对于Linux使用Docker的用户,使用下面的命令:
```
docker pull registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0
docker run -d --name paddlenlp_pipelines --net host -ti registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0
```
对于Windows&Macos上使用Docker的用户,用下面的命令:
```
docker pull registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0.windows.darwin
docker run -d --name paddlenlp_pipelines -p 8891:8891 -p 8502:8502 -ti registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0.windows.darwin
```
CPU 镜像下载大概耗时 10 分钟左右,容器启动成功后,等待3分钟左右,通过浏览器访问 [http://127.0.0.1:8502](http://127.0.0.1:8502) 快速体验产品级语义检索服务。
#### 部署 GPU 服务
```
docker pull registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7
nvidia-docker run -d --name paddlenlp_pipelines_gpu --net host -ti registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7
```
GPU 镜像下载大概耗时 15 分钟左右,容器启动成功后,等待1分钟左右,通过浏览器访问 [http://127.0.0.1:8502](http://127.0.0.1:8502) 快速体验产品级语义检索服务。
对于国内用户,因为网络问题下载docker比较慢时,可使用百度提供的镜像:
| 环境 | 镜像 Tag | 运行平台 |
| :--------------------------: | :-------------------------------: | :-------------: |
| CPU | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0 | Linux |
| CPU | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0.windows.darwin | Windows&Macos |
| CUDA10.2 + cuDNN 7 | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7 | Linux |
| CUDA11.2 + cuDNN 8 | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda11.2-cudnn8 | Linux |
如果您的机器不在中国大陆地区,我们推荐您使用DockerHub的镜像:
| 环境 | 镜像 Tag | 运行平台 |
| :--------------------------: | :-------------------------------: | :-------------: |
| CPU | paddlepaddle/paddlenlp:2.4.0 | Linux |
| CPU | paddlepaddle/paddlenlp:2.4.0.windows.darwin | Windows&Macos |
| CUDA10.2 + cuDNN 7 | paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7 | Linux |
| CUDA11.2 + cuDNN 8 | paddlepaddle/paddlenlp:2.4.0-gpu-cuda11.2-cudnn8 | Linux |
对于智能问答应用,请参考Docker文档[docker文档](./docker/README.md),只需做少量的修改,就可以完成智能问答应用的部署。
#### REST API
Pipelines可以服务化,通过HTTP接口的形式供其他程序进行调用,Pipelines提供了Swagger API方便用户查询接口文档,从而把Pipelines的能力接入到自己的应用系统中,只需要在启动REST API后通过浏览器访问 [http://127.0.0.1:8891/docs](http://127.0.0.1:8891/docs)
<div align="center">
<img src="https://user-images.githubusercontent.com/12107462/204282574-4a468ba5-d32f-4ead-970b-87139b613521.png" width="500px">
</div>
## :man_office_worker: 用户案例
### 案例1: [寻规-工程规范搜索引擎](https://xungui365.com/)
[寻规](https://xungui365.com/),是一款基于飞桨 PaddleNLP Pipelines 构建的建筑工程规范搜索引擎。大幅提升了工程设计人员工作效率。
#### 查询效率提升 36~60 倍
相比市面当前的工程规范查询系统/网站,平均查询到一条规范条款要 3\~5 分钟,而基于 PaddleNLP Pipelines 构建的[寻规](https://xungui365.com/)检索系统,平均查询到一条规范条款仅需 5 秒左右,搜索时间大幅缩短,仅规范查询效率方面就提升**36\~60** 倍!
#### 查询精度大幅提升
市面现已有的工程规范查询系统解决方案一直延续着传统关键字词匹配的查询方式,依赖用户对查询结果进行自行排序、筛选、鉴别,有时甚至还要再次由工程设计人员耗费一定时间精力人工查阅工程规范文件后,才能最终确认是否为想要查询的规范条款。传统规范查询系统至少需要进行 3~5 次查询才能找到用户想要的规范条款,而寻规系统是基于强大预训练模型构建起来的语义检索系统,针对 80% 的规范查询需求仅 **1 次查询** 就能精确命中查询意图,并返回真正符合工程设计人员查询意图的结果!
## :mortar_board: Tutorials
- Tutorial 1 - Pipelines [Windows视频安装教程](https://www.bilibili.com/video/BV1DY4y1M7HE/?zw)
- Tutorial 2 - 语义检索 Pipeline: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/4442670) | [Python](https://github.com/PaddlePaddle/PaddleNLP/blob/develop/pipelines/examples/semantic-search/semantic_search_example.py)
- Tutorial 3 - 智能问答 Pipeline: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/4442857) | [Python](https://github.com/PaddlePaddle/PaddleNLP/blob/develop/pipelines/examples/question-answering/dense_qa_example.py)
- Tutorial 4 - FAQ智能问答 Pipeline: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/4465498) | [Python](https://github.com/PaddlePaddle/PaddleNLP/blob/develop/pipelines/examples/FAQ/dense_faq_example.py)
- Tutorial 5 - Pipelines 快速上手二次开发教程: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/5011119)
## :vulcan_salute: 社区交流
微信扫描二维码并填写问卷之后,加入交流群与来自各行各业的小伙伴交流学习吧~
<div align="center">
<img src="https://user-images.githubusercontent.com/11793384/168411900-d9f3d777-99ab-4b5c-8cdc-ef747a48b864.jpg" width="150" height="150" />
</div>
## :heart: Acknowledge
我们借鉴了 Deepset.ai [Haystack](https://github.com/deepset-ai/haystack) 优秀的框架设计,在此对[Haystack](https://github.com/deepset-ai/haystack)作者及其开源社区表示感谢。
We learn form the excellent framework design of Deepset.ai [Haystack](https://github.com/deepset-ai/haystack), and we would like to express our thanks to the authors of Haystack and their open source community.
Raw data
{
"_id": null,
"home_page": "https://github.com/PaddlePaddle/PaddleNLP",
"name": "paddle-pipelines",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "",
"author": "PaddlePaddle Speech and Language Team",
"author_email": "paddlenlp@baidu.com",
"download_url": "https://files.pythonhosted.org/packages/87/d0/3585cfb0635dda0107f6f33caf57e4196a07d63fb6f2eb59fed29f9b62c7/paddle-pipelines-0.6.2.tar.gz",
"platform": null,
"description": "## PaddleNLP Pipelines\uff1aNLP\u6d41\u6c34\u7ebf\u7cfb\u7edf\n\nPaddleNLP Pipelines \u662f\u4e00\u4e2a\u7aef\u5230\u7aefNLP\u6d41\u6c34\u7ebf\u7cfb\u7edf\u6846\u67b6\uff0c\u9762\u5411 NLP **\u5168\u573a\u666f**\uff0c\u5e2e\u52a9\u7528\u6237**\u4f4e\u95e8\u69db**\u6784\u5efa\u5f3a\u5927**\u4ea7\u54c1\u7ea7\u7cfb\u7edf**\u3002\n\n<div align=\"center\">\n <img src=\"https://user-images.githubusercontent.com/12107462/190302765-663ba441-9dd3-470a-8fee-f7a6f81da615.gif\" width=\"500px\">\n</div>\n\n\u66f4\u591a\u6548\u679c\u5c55\u793aDemo\u8bf7\u53c2\u8003 [\u6548\u679c\u5c55\u793a](#\u6548\u679c\u5c55\u793a)\n\n## NLP\u6d41\u6c34\u7ebf\u7cfb\u7edf\u7279\u8272\n* **\u5168\u573a\u666f\u652f\u6301**\uff1a\u4f9d\u6258\u7075\u6d3b\u7684\u63d2\u62d4\u5f0f\u7ec4\u4ef6\u4ea7\u7ebf\u5316\u8bbe\u8ba1\uff0c\u652f\u6301\u5404\u7c7b NLP \u573a\u666f\u4efb\u52a1\uff0c\u5305\u62ec\uff1a\u4fe1\u606f\u62bd\u53d6\u3001\u60c5\u611f\u503e\u5411\u5206\u6790\u3001\u9605\u8bfb\u7406\u89e3\u3001\u68c0\u7d22\u7cfb\u7edf\u3001\u95ee\u7b54\u7cfb\u7edf\u3001\u6587\u672c\u5206\u7c7b\u3001\u6587\u672c\u751f\u6210\u7b49\u3002\n\n* **\u4f4e\u95e8\u69db\u5f00\u53d1**\uff1a\u4f9d\u6258\u4e30\u5bcc\u7684\u9884\u7f6e\u7ec4\u4ef6\uff0c\u50cf\u642d\u79ef\u6728\u4e00\u6837\u5feb\u901f\u6784\u5efa\u4ea7\u54c1\u7ea7\u7cfb\u7edf\uff0c\u9884\u7f6e\u7ec4\u4ef6\u8986\u76d6\u6587\u6863\u89e3\u6790\u3001\u6570\u636e\u5904\u7406\u3001\u6a21\u578b\u7ec4\u7f51\u3001\u9884\u6d4b\u90e8\u7f72\u3001Web \u670d\u52a1\u3001UI \u754c\u9762\u7b49\u5168\u6d41\u7a0b\u7cfb\u7edf\u529f\u80fd\u3002\n\n* **\u9ad8\u7cbe\u5ea6\u9884\u6d4b**\uff1a\u57fa\u4e8e\u524d\u6cbf\u7684\u9884\u8bad\u7ec3\u6a21\u578b\u3001\u6210\u719f\u7684\u7cfb\u7edf\u65b9\u6848\uff0c\u53ef\u6784\u5efa\u6548\u679c\u9886\u5148\u7684\u4ea7\u54c1\u7ea7\u7cfb\u7edf\uff0c\u5982[NLP\u6d41\u6c34\u7ebf\u7cfb\u7edf](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#NLP\u6d41\u6c34\u7ebf\u7cfb\u7edf)\u4e2d\u9884\u7f6e\u7684\u8bed\u4e49\u68c0\u7d22\u7cfb\u7edf\u3001\u9605\u8bfb\u7406\u89e3\u5f0f\u667a\u80fd\u95ee\u7b54\u7cfb\u7edf\u7b49\u3002\n\n* **\u7075\u6d3b\u53ef\u5b9a\u5236**\uff1a\u9664\u6df1\u5ea6\u517c\u5bb9 PaddleNLP \u6a21\u578b\u7ec4\u4ef6\u5916\uff0c\u8fd8\u53ef\u5d4c\u5165\u98de\u6868\u751f\u6001\u4e0b\u4efb\u610f\u6a21\u578b\u3001[AI \u5f00\u653e\u5e73\u53f0\u7b97\u5b50](https://ai.baidu.com/)\u3001\u5176\u5b83\u5f00\u6e90\u9879\u76ee\u5982 Elasticsearch \u7b49\u4f5c\u4e3a\u57fa\u7840\u7ec4\u4ef6\uff0c\u5feb\u901f\u6269\u5c55\uff0c\u4ece\u800c\u5b9e\u73b0\u4efb\u610f\u590d\u6742\u7cfb\u7edf\u7684\u7075\u6d3b\u5b9a\u5236\u5f00\u53d1\u3002\n\n## Benchmarks\n\n<div align=\"center\">\n <img src=\"https://user-images.githubusercontent.com/12107462/187362675-f0818e77-a521-4479-8dd7-bcbf4a820f7d.png\" width=\"500\">\n</div>\n\n\u66f4\u591a\u7684Benchmarks\u7684\u4fe1\u606f\u8bf7\u53c2\u8003\u6587\u6863[Benchmarks](./benchmarks/README.md)\n\n## NLP\u6d41\u6c34\u7ebf\u7cfb\u7edf\n\nPaddleNLP Pipelines NLP\u6d41\u6c34\u7ebf\u7cfb\u7edf\u9488\u5bf9 NLP \u90e8\u5206\u9ad8\u9891\u573a\u666f\u5f00\u6e90\u4e86\u7ecf\u8fc7\u5145\u5206\u6253\u78e8\u7684\u4ea7\u54c1\u7ea7\u7cfb\u7edf\uff0c\u5e76\u4f1a\u4e0d\u65ad\u5f00\u653e\u5176\u5b83\u573a\u666f\u7684\u4ea7\u54c1\u7ea7\u7cfb\u7edf\uff0c\u7528\u6237\u53ef\u4ee5\u57fa\u4e8eNLP\u6d41\u6c34\u7ebf\u7cfb\u7edf\u63d0\u4f9b\u7684\u7cfb\u7edf\u80fd\u529b\u5feb\u901f\u5f00\u53d1\u51fa\u9002\u914d\u4e1a\u52a1\u6570\u636e\u7684\u4ea7\u54c1\u3002\n\n* \u5feb\u901f\u642d\u5efa\u4ea7\u54c1\u7ea7[**\u8bed\u4e49\u68c0\u7d22**](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/examples/semantic-search)\u7cfb\u7edf\uff1a\u4f7f\u7528\u81ea\u7136\u8bed\u8a00\u6587\u672c\u901a\u8fc7\u8bed\u4e49\u8fdb\u884c\u667a\u80fd\u6587\u6863\u67e5\u8be2\uff0c\u800c\u4e0d\u662f\u5173\u952e\u5b57\u5339\u914d\n* \u5feb\u901f\u642d\u5efa\u4ea7\u54c1\u7ea7[**\u667a\u80fd\u95ee\u7b54**](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/examples/question-answering)\u7cfb\u7edf\uff1a\u7528\u81ea\u7136\u8bed\u8a00\u63d0\u95ee\uff0c\u5373\u53ef\u83b7\u5f97\u7cbe\u51c6\u7b54\u6848\u7247\u6bb5\n* \u5feb\u901f\u642d\u5efa\u4ea7\u54c1\u7ea7 [**FAQ \u95ee\u7b54**](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/examples/FAQ)\u7cfb\u7edf\uff1a\u7528\u81ea\u7136\u8bed\u8a00\u63d0\u95ee\uff0c\u5339\u914d\u76f8\u5173\u7684\u9ad8\u9891\u95ee\u9898\uff0c\u5e76\u8fd4\u56de\u5339\u914d\u5230\u7684\u9ad8\u9891\u95ee\u9898\u7684\u7b54\u6848\n* \u5feb\u901f\u642d\u5efa\u4ea7\u54c1\u7ea7**\u591a\u6a21\u6001\u4fe1\u606f\u62bd\u53d6**\u7cfb\u7edf\uff08\u5373\u5c06\u5f00\u653e\uff0c\u656c\u8bf7\u671f\u5f85\uff09\n\n### \u6548\u679c\u5c55\u793a\n\n+ \u8bed\u4e49\u68c0\u7d22\n\n<div align=\"center\">\n <img src=\"https://user-images.githubusercontent.com/12107462/190302765-663ba441-9dd3-470a-8fee-f7a6f81da615.gif\" width=\"500px\">\n</div>\n\n+ \u667a\u80fd\u95ee\u7b54\n\n<div align=\"center\">\n <img src=\"https://user-images.githubusercontent.com/12107462/190298926-a1fc92f3-5ec7-4265-8357-ab860cc1fed2.gif\" width=\"500px\">\n</div>\n\n+ FAQ\u667a\u80fd\u95ee\u7b54\n\n<div align=\"center\">\n <img src=\"https://user-images.githubusercontent.com/12107462/190307449-38135678-f259-4483-ac0f-2fa3ae4be97f.gif\" width=\"500px\">\n</div>\n\n| | |\n|-|-|\n| :floppy_disk: [\u5feb\u901f\u5b89\u88c5](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#floppy_disk-\u5b89\u88c5) |\u5b89\u88c5 PaddleNLP Pipelines|\n| :beginner: [\u5feb\u901f\u4f53\u9a8c](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#beginner-\u5feb\u901f\u4f53\u9a8c) |\u57fa\u4e8e Pipelines \u5feb\u901f\u642d\u5efa\u8bed\u4e49\u68c0\u7d22/\u667a\u80fd\u95ee\u7b54\u7b49\u4ea7\u54c1\u7cfb\u7edf|\n| :man_office_worker: [\u7528\u6237\u6848\u4f8b](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#man_office_worker-\u7528\u6237\u6848\u4f8b) |\u5404\u884c\u4e1a\u7528\u6237\u57fa\u4e8ePaddleNLP Pipelinse \u6784\u5efa\u7684\u4ea7\u54c1\u6848\u4f8b|\n| :mortar_board: [Tutorials](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#mortar_board-tutorials) |\u50cf\u642d\u79ef\u6728\u4e00\u6837\u4e00\u6b65\u6b65\u6784\u5efa NLP \u6d41\u6c34\u7ebf\u7cfb\u7edf\u6559\u7a0b|\n| :bar_chart: [Benchmarks](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines/benchmarks) |\u9488\u5bf9\u5404\u573a\u666f\u6a21\u578b\u7684\u6027\u80fd\u3001\u7cbe\u5ea6\u8bc4\u6d4b\u6307\u6807|\n| :telescope: [Roadmap](https://github.com/PaddlePaddle/PaddleNLP) | PaddleNLP Pipelines \u4ea7\u54c1\u8def\u7ebf\u56fe|\n| :newspaper: [\u6280\u672f\u535a\u5ba2](https://github.com/PaddlePaddle/PaddleNLP) | \u9605\u8bfb PaddleNLP Pipelines \u7cfb\u5217\u6280\u672f\u6587\u7ae0|\n| :vulcan_salute: [\u793e\u533a\u4ea4\u6d41](https://github.com/PaddlePaddle/PaddleNLP/tree/develop/pipelines#vulcan_salute-\u793e\u533a\u4ea4\u6d41) | [\u5b98\u65b9\u5fae\u4fe1\u7fa4](https://github.com/PaddlePaddle/PaddleNLP#\u793e\u533a\u4ea4\u6d41), [GitHub Discussions](https://github.com/PaddlePaddle/PaddleNLP/discussions) |\n\n## :floppy_disk: \u5b89\u88c5\nNote: \u56e0\u4e3a pipelines \u4f9d\u8d56\u8f83\u591a, \u5b89\u88c5\u8017\u65f6\u5927\u6982 10 \u5206\u949f\u5de6\u53f3\uff0c\u5b89\u88c5\u8fc7\u7a0b\u4e2d\u8bf7\u8bf7\u8010\u5fc3\u7b49\u5f85\u3002\n### \u73af\u5883\u4f9d\u8d56\n- python >= 3.7.3\n- paddlenlp >= 2.2.1\n- paddlepaddle >=2.3\n- CUDA Version: 10.2\n- NVIDIA Driver Version: 440.64.00\n- Docker 18.03 \u4ee5\u4e0a\n### pip \u5b89\u88c5\n```\npip install --upgrade paddle-pipelines\n```\n\n### \u6e90\u7801\u5b89\u88c5\n```\ngit clone https://github.com/PaddlePaddle/PaddleNLP.git\ncd PaddleNLP/pipelines\npython setup.py install\n```\n\n## :beginner: \u5feb\u901f\u4f53\u9a8c\n\n### \u5feb\u901f\u5f00\u53d1\n\n\u60a8\u53ef\u4ee5\u53c2\u8003\u5982\u4e0b\u793a\u4f8b\u50cf\u642d\u79ef\u6728\u4e00\u6837\u5feb\u901f\u6784\u5efa\u8bed\u4e49\u68c0\u7d22\u6d41\u6c34\u7ebf\uff0c\u901a\u8fc7\u547d\u4ee4\u884c\u7ec8\u7aef\u8f93\u51fa\u5feb\u901f\u4f53\u9a8c\u6d41\u6c34\u7ebf\u7cfb\u7edf\u6548\u679c\n\n```python\nfrom pipelines.document_stores import FAISSDocumentStore\nfrom pipelines.nodes import DensePassageRetriever, ErnieRanker\n\n# Step1: Preparing the data\ndocuments = [\n {'content': '\u91d1\u94b1\u9f9f\u4e0d\u5206\u54c1\u79cd,\u53ea\u6709\u751f\u957f\u5730\u4e4b\u5206,\u5728\u6211\u56fd\u4e3b\u8981\u5206\u5e03\u4e8e\u5e7f\u4e1c\u3001\u5e7f\u897f\u3001\u798f\u5efa\u3001\u6d77\u5357\u3001\u9999\u6e2f\u3001\u6fb3\u95e8\u7b49\u5730,\u5728\u56fd\u5916\u4e3b\u8981\u5206\u5e03\u4e8e\u8d8a\u5357\u7b49\u4e9a\u70ed\u5e26\u56fd\u5bb6\u548c\u5730\u533a\u3002',\n 'meta': {'name': 'test1.txt'}},\n {'content': '\u8861\u91cf\u9152\u6c34\u7684\u4ef7\u683c\u7684\u56e0\u7d20\u5f88\u591a\u7684\uff0c\u9152\u6c34\u7684\u8840\u7edf(\u4e5f\u5c31\u662f\u90a3\u91cc\u4ea7\u7684\uff0c\u91c7\u7528\u4ec0\u4e48\u5de5\u827a\u7b49\uff09\uff1b\u5b58\u50a8\u7684\u65f6\u95f4\u7b49\u7b49\uff0c\u9152\u6c34\u662f\u4e00\u4ef6\u5f88\u96be\u6807\u51c6\u5316\u5f97\u5546\u54c1\uff0c\u53ea\u8981\u4f60\u6562\u8981\u4ef7\uff0c\u6709\u4e70\u7684\u90a3\u5c31\u503c\u90a3\u4e2a\u94b1\u3002',\n 'meta': {'name': 'test2.txt'}}\n]\n\n# Step2: Initialize a FaissDocumentStore to store texts of documents\ndocument_store = FAISSDocumentStore(embedding_dim=768)\ndocument_store.write_documents(documents)\n\n# Step3: Initialize a DenseRetriever and build ANN index\nretriever = DensePassageRetriever(document_store=document_store, query_embedding_model=\"rocketqa-zh-base-query-encoder\",embed_title=False)\ndocument_store.update_embeddings(retriever)\n\n# Step4: Initialize a Ranker\nranker = ErnieRanker(model_name_or_path=\"rocketqa-base-cross-encoder\")\n\n# Step5: Initialize a SemanticSearchPipeline and ask questions\nfrom pipelines import SemanticSearchPipeline\npipeline = SemanticSearchPipeline(retriever, ranker)\nprediction = pipeline.run(query=\"\u8861\u91cf\u9152\u6c34\u7684\u4ef7\u683c\u7684\u56e0\u7d20\u6709\u54ea\u4e9b?\")\n```\n### \u5feb\u901f\u90e8\u7f72\n\n\u60a8\u53ef\u4ee5\u57fa\u4e8e\u6211\u4eec\u53d1\u5e03\u7684 Docker \u955c\u50cf\u4e00\u952e\u90e8\u7f72\u667a\u80fd\u6587\u672c\u6d41\u6c34\u7ebf\u7cfb\u7edf\uff0c\u901a\u8fc7 Web UI \u5feb\u901f\u4f53\u9a8c\u3002\n\n#### \u542f\u52a8 elastic search\n\n```\ndocker network create elastic\ndocker pull docker.elastic.co/elasticsearch/elasticsearch:8.3.3\ndocker run \\\n -d \\\n --name es02 \\\n --net elastic \\\n -p 9200:9200 \\\n -e discovery.type=single-node \\\n -e ES_JAVA_OPTS=\"-Xms256m -Xmx256m\"\\\n -e xpack.security.enabled=false \\\n -e cluster.routing.allocation.disk.threshold_enabled=false \\\n -it \\\n docker.elastic.co/elasticsearch/elasticsearch:8.3.3\n```\n\n#### \u90e8\u7f72 CPU \u670d\u52a1\n\n\u5bf9\u4e8eLinux\u4f7f\u7528Docker\u7684\u7528\u6237\uff0c\u4f7f\u7528\u4e0b\u9762\u7684\u547d\u4ee4\uff1a\n```\ndocker pull registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0\ndocker run -d --name paddlenlp_pipelines --net host -ti registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0\n```\n\u5bf9\u4e8eWindows&Macos\u4e0a\u4f7f\u7528Docker\u7684\u7528\u6237\uff0c\u7528\u4e0b\u9762\u7684\u547d\u4ee4\uff1a\n\n```\ndocker pull registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0.windows.darwin\ndocker run -d --name paddlenlp_pipelines -p 8891:8891 -p 8502:8502 -ti registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0.windows.darwin\n```\nCPU \u955c\u50cf\u4e0b\u8f7d\u5927\u6982\u8017\u65f6 10 \u5206\u949f\u5de6\u53f3\uff0c\u5bb9\u5668\u542f\u52a8\u6210\u529f\u540e\uff0c\u7b49\u5f853\u5206\u949f\u5de6\u53f3\uff0c\u901a\u8fc7\u6d4f\u89c8\u5668\u8bbf\u95ee [http://127.0.0.1:8502](http://127.0.0.1:8502) \u5feb\u901f\u4f53\u9a8c\u4ea7\u54c1\u7ea7\u8bed\u4e49\u68c0\u7d22\u670d\u52a1\u3002\n\n\n#### \u90e8\u7f72 GPU \u670d\u52a1\n```\ndocker pull registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7\nnvidia-docker run -d --name paddlenlp_pipelines_gpu --net host -ti registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7\n```\nGPU \u955c\u50cf\u4e0b\u8f7d\u5927\u6982\u8017\u65f6 15 \u5206\u949f\u5de6\u53f3\uff0c\u5bb9\u5668\u542f\u52a8\u6210\u529f\u540e\uff0c\u7b49\u5f851\u5206\u949f\u5de6\u53f3\uff0c\u901a\u8fc7\u6d4f\u89c8\u5668\u8bbf\u95ee [http://127.0.0.1:8502](http://127.0.0.1:8502) \u5feb\u901f\u4f53\u9a8c\u4ea7\u54c1\u7ea7\u8bed\u4e49\u68c0\u7d22\u670d\u52a1\u3002\n\n\n\u5bf9\u4e8e\u56fd\u5185\u7528\u6237\uff0c\u56e0\u4e3a\u7f51\u7edc\u95ee\u9898\u4e0b\u8f7ddocker\u6bd4\u8f83\u6162\u65f6\uff0c\u53ef\u4f7f\u7528\u767e\u5ea6\u63d0\u4f9b\u7684\u955c\u50cf\uff1a\n\n\n| \u73af\u5883 | \u955c\u50cf Tag | \u8fd0\u884c\u5e73\u53f0 |\n| :--------------------------: | :-------------------------------: | :-------------: |\n| CPU | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0 | Linux |\n| CPU | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0.windows.darwin | Windows&Macos |\n| CUDA10.2 + cuDNN 7 | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7 | Linux |\n| CUDA11.2 + cuDNN 8 | registry.baidubce.com/paddlepaddle/paddlenlp:2.4.0-gpu-cuda11.2-cudnn8 | Linux |\n\n\u5982\u679c\u60a8\u7684\u673a\u5668\u4e0d\u5728\u4e2d\u56fd\u5927\u9646\u5730\u533a\uff0c\u6211\u4eec\u63a8\u8350\u60a8\u4f7f\u7528DockerHub\u7684\u955c\u50cf\uff1a\n\n| \u73af\u5883 | \u955c\u50cf Tag | \u8fd0\u884c\u5e73\u53f0 |\n| :--------------------------: | :-------------------------------: | :-------------: |\n| CPU | paddlepaddle/paddlenlp:2.4.0 | Linux |\n| CPU | paddlepaddle/paddlenlp:2.4.0.windows.darwin | Windows&Macos |\n| CUDA10.2 + cuDNN 7 | paddlepaddle/paddlenlp:2.4.0-gpu-cuda10.2-cudnn7 | Linux |\n| CUDA11.2 + cuDNN 8 | paddlepaddle/paddlenlp:2.4.0-gpu-cuda11.2-cudnn8 | Linux |\n\n\u5bf9\u4e8e\u667a\u80fd\u95ee\u7b54\u5e94\u7528\uff0c\u8bf7\u53c2\u8003Docker\u6587\u6863[docker\u6587\u6863](./docker/README.md)\uff0c\u53ea\u9700\u505a\u5c11\u91cf\u7684\u4fee\u6539\uff0c\u5c31\u53ef\u4ee5\u5b8c\u6210\u667a\u80fd\u95ee\u7b54\u5e94\u7528\u7684\u90e8\u7f72\u3002\n\n#### REST API\n\nPipelines\u53ef\u4ee5\u670d\u52a1\u5316\uff0c\u901a\u8fc7HTTP\u63a5\u53e3\u7684\u5f62\u5f0f\u4f9b\u5176\u4ed6\u7a0b\u5e8f\u8fdb\u884c\u8c03\u7528\uff0cPipelines\u63d0\u4f9b\u4e86Swagger API\u65b9\u4fbf\u7528\u6237\u67e5\u8be2\u63a5\u53e3\u6587\u6863\uff0c\u4ece\u800c\u628aPipelines\u7684\u80fd\u529b\u63a5\u5165\u5230\u81ea\u5df1\u7684\u5e94\u7528\u7cfb\u7edf\u4e2d\uff0c\u53ea\u9700\u8981\u5728\u542f\u52a8REST API\u540e\u901a\u8fc7\u6d4f\u89c8\u5668\u8bbf\u95ee [http://127.0.0.1:8891/docs](http://127.0.0.1:8891/docs)\n\n<div align=\"center\">\n <img src=\"https://user-images.githubusercontent.com/12107462/204282574-4a468ba5-d32f-4ead-970b-87139b613521.png\" width=\"500px\">\n</div>\n\n\n## :man_office_worker: \u7528\u6237\u6848\u4f8b\n\n### \u6848\u4f8b1: [\u5bfb\u89c4-\u5de5\u7a0b\u89c4\u8303\u641c\u7d22\u5f15\u64ce](https://xungui365.com/)\n\n[\u5bfb\u89c4](https://xungui365.com/)\uff0c\u662f\u4e00\u6b3e\u57fa\u4e8e\u98de\u6868 PaddleNLP Pipelines \u6784\u5efa\u7684\u5efa\u7b51\u5de5\u7a0b\u89c4\u8303\u641c\u7d22\u5f15\u64ce\u3002\u5927\u5e45\u63d0\u5347\u4e86\u5de5\u7a0b\u8bbe\u8ba1\u4eba\u5458\u5de5\u4f5c\u6548\u7387\u3002\n\n#### \u67e5\u8be2\u6548\u7387\u63d0\u5347 36~60 \u500d\n\n\u76f8\u6bd4\u5e02\u9762\u5f53\u524d\u7684\u5de5\u7a0b\u89c4\u8303\u67e5\u8be2\u7cfb\u7edf/\u7f51\u7ad9\uff0c\u5e73\u5747\u67e5\u8be2\u5230\u4e00\u6761\u89c4\u8303\u6761\u6b3e\u8981 3\\~5 \u5206\u949f\uff0c\u800c\u57fa\u4e8e PaddleNLP Pipelines \u6784\u5efa\u7684[\u5bfb\u89c4](https://xungui365.com/)\u68c0\u7d22\u7cfb\u7edf\uff0c\u5e73\u5747\u67e5\u8be2\u5230\u4e00\u6761\u89c4\u8303\u6761\u6b3e\u4ec5\u9700 5 \u79d2\u5de6\u53f3\uff0c\u641c\u7d22\u65f6\u95f4\u5927\u5e45\u7f29\u77ed\uff0c\u4ec5\u89c4\u8303\u67e5\u8be2\u6548\u7387\u65b9\u9762\u5c31\u63d0\u5347**36\\~60** \u500d\uff01\n\n#### \u67e5\u8be2\u7cbe\u5ea6\u5927\u5e45\u63d0\u5347\n\n\u5e02\u9762\u73b0\u5df2\u6709\u7684\u5de5\u7a0b\u89c4\u8303\u67e5\u8be2\u7cfb\u7edf\u89e3\u51b3\u65b9\u6848\u4e00\u76f4\u5ef6\u7eed\u7740\u4f20\u7edf\u5173\u952e\u5b57\u8bcd\u5339\u914d\u7684\u67e5\u8be2\u65b9\u5f0f\uff0c\u4f9d\u8d56\u7528\u6237\u5bf9\u67e5\u8be2\u7ed3\u679c\u8fdb\u884c\u81ea\u884c\u6392\u5e8f\u3001\u7b5b\u9009\u3001\u9274\u522b\uff0c\u6709\u65f6\u751a\u81f3\u8fd8\u8981\u518d\u6b21\u7531\u5de5\u7a0b\u8bbe\u8ba1\u4eba\u5458\u8017\u8d39\u4e00\u5b9a\u65f6\u95f4\u7cbe\u529b\u4eba\u5de5\u67e5\u9605\u5de5\u7a0b\u89c4\u8303\u6587\u4ef6\u540e\uff0c\u624d\u80fd\u6700\u7ec8\u786e\u8ba4\u662f\u5426\u4e3a\u60f3\u8981\u67e5\u8be2\u7684\u89c4\u8303\u6761\u6b3e\u3002\u4f20\u7edf\u89c4\u8303\u67e5\u8be2\u7cfb\u7edf\u81f3\u5c11\u9700\u8981\u8fdb\u884c 3~5 \u6b21\u67e5\u8be2\u624d\u80fd\u627e\u5230\u7528\u6237\u60f3\u8981\u7684\u89c4\u8303\u6761\u6b3e\uff0c\u800c\u5bfb\u89c4\u7cfb\u7edf\u662f\u57fa\u4e8e\u5f3a\u5927\u9884\u8bad\u7ec3\u6a21\u578b\u6784\u5efa\u8d77\u6765\u7684\u8bed\u4e49\u68c0\u7d22\u7cfb\u7edf\uff0c\u9488\u5bf9 80% \u7684\u89c4\u8303\u67e5\u8be2\u9700\u6c42\u4ec5 **1 \u6b21\u67e5\u8be2** \u5c31\u80fd\u7cbe\u786e\u547d\u4e2d\u67e5\u8be2\u610f\u56fe\uff0c\u5e76\u8fd4\u56de\u771f\u6b63\u7b26\u5408\u5de5\u7a0b\u8bbe\u8ba1\u4eba\u5458\u67e5\u8be2\u610f\u56fe\u7684\u7ed3\u679c\uff01\n\n## :mortar_board: Tutorials\n- Tutorial 1 - Pipelines [Windows\u89c6\u9891\u5b89\u88c5\u6559\u7a0b](https://www.bilibili.com/video/BV1DY4y1M7HE/?zw)\n- Tutorial 2 - \u8bed\u4e49\u68c0\u7d22 Pipeline: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/4442670) | [Python](https://github.com/PaddlePaddle/PaddleNLP/blob/develop/pipelines/examples/semantic-search/semantic_search_example.py)\n- Tutorial 3 - \u667a\u80fd\u95ee\u7b54 Pipeline: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/4442857) | [Python](https://github.com/PaddlePaddle/PaddleNLP/blob/develop/pipelines/examples/question-answering/dense_qa_example.py)\n- Tutorial 4 - FAQ\u667a\u80fd\u95ee\u7b54 Pipeline: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/4465498) | [Python](https://github.com/PaddlePaddle/PaddleNLP/blob/develop/pipelines/examples/FAQ/dense_faq_example.py)\n- Tutorial 5 - Pipelines \u5feb\u901f\u4e0a\u624b\u4e8c\u6b21\u5f00\u53d1\u6559\u7a0b: [AIStudio notebook](https://aistudio.baidu.com/aistudio/projectdetail/5011119)\n## :vulcan_salute: \u793e\u533a\u4ea4\u6d41\n\u5fae\u4fe1\u626b\u63cf\u4e8c\u7ef4\u7801\u5e76\u586b\u5199\u95ee\u5377\u4e4b\u540e\uff0c\u52a0\u5165\u4ea4\u6d41\u7fa4\u4e0e\u6765\u81ea\u5404\u884c\u5404\u4e1a\u7684\u5c0f\u4f19\u4f34\u4ea4\u6d41\u5b66\u4e60\u5427~\n <div align=\"center\">\n <img src=\"https://user-images.githubusercontent.com/11793384/168411900-d9f3d777-99ab-4b5c-8cdc-ef747a48b864.jpg\" width=\"150\" height=\"150\" />\n </div>\n\n\n## :heart: Acknowledge\n\u6211\u4eec\u501f\u9274\u4e86 Deepset.ai [Haystack](https://github.com/deepset-ai/haystack) \u4f18\u79c0\u7684\u6846\u67b6\u8bbe\u8ba1\uff0c\u5728\u6b64\u5bf9[Haystack](https://github.com/deepset-ai/haystack)\u4f5c\u8005\u53ca\u5176\u5f00\u6e90\u793e\u533a\u8868\u793a\u611f\u8c22\u3002\n\nWe learn form the excellent framework design of Deepset.ai [Haystack](https://github.com/deepset-ai/haystack), and we would like to express our thanks to the authors of Haystack and their open source community.\n\n\n",
"bugtrack_url": null,
"license": "Apache 2.0",
"summary": "Paddle-Pipelines: An End to End Natural Language Proceessing Development Kit Based on PaddleNLP",
"version": "0.6.2",
"project_urls": {
"Homepage": "https://github.com/PaddlePaddle/PaddleNLP"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d01fc555c380d5e0dbcb110e860d45657710ae50e45659320b7aca5645ed3caa",
"md5": "c34840bde709a882869c17aae87750a9",
"sha256": "806ef386865b71189de9f068905a7cffd90cb054eb744c1de275b9d6aadc2acc"
},
"downloads": -1,
"filename": "paddle_pipelines-0.6.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c34840bde709a882869c17aae87750a9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 346463,
"upload_time": "2023-11-29T07:18:54",
"upload_time_iso_8601": "2023-11-29T07:18:54.795224Z",
"url": "https://files.pythonhosted.org/packages/d0/1f/c555c380d5e0dbcb110e860d45657710ae50e45659320b7aca5645ed3caa/paddle_pipelines-0.6.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87d03585cfb0635dda0107f6f33caf57e4196a07d63fb6f2eb59fed29f9b62c7",
"md5": "307bd3d59c61678651eb0b0cec686335",
"sha256": "3b0f0bc43e409eb1fe6ec9f6655c85ae94907fcd38905e7686e873255caf32fc"
},
"downloads": -1,
"filename": "paddle-pipelines-0.6.2.tar.gz",
"has_sig": false,
"md5_digest": "307bd3d59c61678651eb0b0cec686335",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 248425,
"upload_time": "2023-11-29T07:18:56",
"upload_time_iso_8601": "2023-11-29T07:18:56.454288Z",
"url": "https://files.pythonhosted.org/packages/87/d0/3585cfb0635dda0107f6f33caf57e4196a07d63fb6f2eb59fed29f9b62c7/paddle-pipelines-0.6.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-11-29 07:18:56",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "PaddlePaddle",
"github_project": "PaddleNLP",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "paddle-pipelines"
}