主页 M

PaddleX识别表格服务器部署

2024-11-09 网页编程网 网页编程网

1.序

python3.9版本,设置set config国内源。

2.安装paddlepaddle

pip3 install paddlepaddle==3.0.0b2 -i https://www.paddlepaddle.org.cn/packages/stable/cpu/

验证是否安装成功

python3 -c "import paddle; print(paddle.__version__)"

若未打印出版本信息,再重新安装几次上述命令。若缺少包,要也补包。

3.安装paddleX

参考

https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/installation/installation.md

3.1 linux源码安装

git clone https://gitee.com/paddlepaddle/PaddleX.git

cd PaddleX

pip3 install -e .

4.表格识别

也可以换成其他的识别

python3 -m paddlex --pipeline table_recognition --input table_recognition.jpg --device gpu:0

详细参考

https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/pipeline_usage/tutorials/ocr_pipelines/table_recognition.md

5.服务器部署

python3 -m paddlex --install serving

参考

https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/pipeline_deploy/service_deploy.md

6.开启服务器并运行

paddlex --serve --pipeline table_recognition

7.多语言调用

如python、golang、PHP等。

参考

https://paddlepaddle.github.io/PaddleX/latest/pipeline_usage/tutorials/ocr_pipelines/table_recognition.html#3

8.试用其他产品

https://github.com/PaddlePaddle/PaddleX/tree/develop

阅读原文
阅读 124
123 显示电脑版