PaddlePaddle / PaddleOCR

Awesome multilingual OCR toolkits based on PaddlePaddle (practical ultra lightweight OCR system, support 80+ languages recognition, provide data annotation and synthesis tools, support training and deployment among server, mobile, embedded and IoT devices)
https://paddlepaddle.github.io/PaddleOCR/
Apache License 2.0
42.98k stars 7.71k forks source link

hub install deploy/hubserving/structure_table/ 部署异常 #11499

Closed phpxianyu closed 8 months ago

phpxianyu commented 8 months ago

DockerFile 信息

# Version: 2.3
FROM registry.baidubce.com/paddlepaddle/paddle:2.6.0

# PaddleOCR base on Python3.7
ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
RUN pip install paddlehub==2.1.0 --upgrade -i https://mirror.baidu.com/pypi/simple

RUN git clone  -b v2.6.0  https://gitee.com/paddlepaddle/PaddleOCR.git /PaddleOCR

WORKDIR /PaddleOCR

RUN mkdir -p /PaddleOCR/inference/

ADD https://paddleocr.bj.bcebos.com/PP-OCRv3/chinese/ch_PP-OCRv3_det_infer.tar /PaddleOCR/inference/
RUN tar xf /PaddleOCR/inference/ch_PP-OCRv3_det_infer.tar -C /PaddleOCR/inference/

ADD https://paddleocr.bj.bcebos.com/PP-OCRv3/chinese/ch_PP-OCRv3_rec_infer.tar /PaddleOCR/inference/
RUN tar xf /PaddleOCR/inference/ch_PP-OCRv3_rec_infer.tar -C /PaddleOCR/inference/

ADD https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_cls_infer.tar /PaddleOCR/inference/
RUN tar xf /PaddleOCR/inference/ch_ppocr_mobile_v2.0_cls_infer.tar -C /PaddleOCR/inference/
ADD https://paddleocr.bj.bcebos.com/ppstructure/models/slanet/ch_ppstructure_mobile_v2.0_SLANet_infer.tar /PaddleOCR/inference/
RUN tar xf /PaddleOCR/inference/ch_ppstructure_mobile_v2.0_SLANet_infer.tar -C /PaddleOCR/inference/
ADD https://paddleocr.bj.bcebos.com/dygraph_v2.0/table/en_ppocr_mobile_v2.0_table_structure_infer.tar /PaddleOCR/inference/
RUN tar xf /PaddleOCR/inference/en_ppocr_mobile_v2.0_table_structure_infer.tar -C /PaddleOCR/inference/

image

phpxianyu commented 8 months ago

@WenmuZhou 运行 structure_table 下的 module.py报错

image

tink2123 commented 8 months ago

hubserving 没有持续更新维护,请降低paddle版本,推荐2.4.2试下

phpxianyu commented 8 months ago

hubserving 没有持续更新维护,请降低paddle版本,推荐2.4.2试下

2.4.2 没问题