From b8456b13484af9ca0290c249570a5782f2f3e802 Mon Sep 17 00:00:00 2001 From: w5688414 Date: Tue, 23 Apr 2024 15:59:42 +0000 Subject: [PATCH] Update README.md --- pipelines/README.md | 3 ++- pipelines/docs/index.md | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pipelines/README.md b/pipelines/README.md index d108c25a216a..5778158dff41 100644 --- a/pipelines/README.md +++ b/pipelines/README.md @@ -32,7 +32,6 @@ PaddleNLP Pipelines 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)系统:用自然语言提问,匹配相关的高频问题,并返回匹配到的高频问题的答案 -* 快速搭建产品级**多模态信息抽取**系统(即将开放,敬请期待) ### 效果展示 @@ -120,6 +119,8 @@ from pipelines import SemanticSearchPipeline pipeline = SemanticSearchPipeline(retriever, ranker) prediction = pipeline.run(query="衡量酒水的价格的因素有哪些?") ``` +更多详细信息请参考[开发文档](https://paddle-pipelines.readthedocs.io/en/latest/) + ### 快速部署 您可以基于我们发布的 Docker 镜像一键部署智能文本流水线系统,通过 Web UI 快速体验。 diff --git a/pipelines/docs/index.md b/pipelines/docs/index.md index ab3d8a1b562c..b7da5ef42200 100644 --- a/pipelines/docs/index.md +++ b/pipelines/docs/index.md @@ -33,7 +33,6 @@ PaddleNLP Pipelines 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)系统:用自然语言提问,匹配相关的高频问题,并返回匹配到的高频问题的答案 -* 快速搭建产品级**多模态信息抽取**系统(即将开放,敬请期待) ### 效果展示 @@ -121,7 +120,6 @@ from pipelines import SemanticSearchPipeline pipeline = SemanticSearchPipeline(retriever, ranker) prediction = pipeline.run(query="衡量酒水的价格的因素有哪些?") ``` -更多详细信息请参考[开发文档](https://paddle-pipelines.readthedocs.io/en/latest/) ### 快速部署