赞
踩
PaddleNlp官方安装流程见https://github.com/PaddlePaddle/PaddleNLP/blob/develop/pipelines/examples/semantic-search/Install_windows.md
。
里面有些说的不清楚的,我这里又写了一份。
Anaconda安装好以后,进入 Anaconda Powershell Prompt。注意不要用Anaconda Prompt (Anaconda3),否则有些命令不能操作!下面开始以下操作,注意操作顺序不要乱,否则也可能造成安装失败!
conda create -n nlp python=3.8
conda activate nlp
https://www.paddlepaddle.org.cn/install/quick?docurl=/documentation/docs/zh/install/pip/windows-pip.html
。注意:gpu版的paddlepaddle要根据自己安装的cuda版本选择对应的paddlepaddle版本。git clone https://github.com/tvst/htbuilder.git
cd htbuilder/
python setup.py install
git clone https://github.com/PaddlePaddle/PaddleNLP.git
cd PaddleNLP/pipelines
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
python setup.py install
注意:接下来的操作都要在pipelines目录下进行,不要跳转目录。
5. 启动 ANN 服务
在https://www.elastic.co/cn/downloads/elasticsearch
下载安装 elasticsearch-8.3.2 并解压。
在config\ elasticsearch.yml文件中添加
xpack.security.enabled: false
然后直接双击bin目录下的elasticsearch.bat即可启动ES 服务。
注意启动后不要关闭该窗口。
6. 文档数据写入 ANN 索引库
以DuReader-Robust 数据集为例建立 ANN 索引库
python utils/offline_ann.py --index_name dureader_robust_query_encoder --doc_dir data/dureader_dev
7.启动 RestAPI 模型服务
#指定语义检索系统的Yaml配置文件
$env:PIPELINE_YAML_PATH='rest_api/pipeline/semantic_search.yaml'
#使用端口号 8891 启动模型服务
python rest_api/application.py 8891
注意启动后不要关闭该窗口。
8. 启动 WebUI
#配置模型服务地址
$env:API_ENDPOINT='http://127.0.0.1:8891'
#在指定端口 8502 启动 WebUI
python -m streamlit run ui/webapp_semantic_search.py --server.port 8502
注意启动后不要关闭该窗口。
到这里您就可以打开浏览器访问 http://127.0.0.1:8502 地址体验语义检索系统服务了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。