Awesome pre-trained models toolkit based on PaddlePaddle. (400+ models including Image, Text, Audio, Video and Cross-Modal with Easy Inference & Serving)【安全加固,暂停交互,请耐心等待】
我单独运行module.py,会报一下错误:
from paddlehub.common.logger import logger
ModuleNotFoundError: No module named 'paddlehub.common',但是很神奇的是在运行hub serving start -m ocr_system时候没问题。。。说明根本没走改文件。
3.当我换成python的logging时候又会报错为:
AttributeError: 'OCRSystem' object has no attribute 'text_sys'
我进去看了代码说
After the 2.0.0rc version, paddle uses the dynamic graph mode by default, which will cause the
execution of the static graph model to fail, so compatibility protection is required.
请问如何启动动态图
你好,我在使用hubsevering的时候,使用ocr_system,修改module.py文件,有两个问题:
修改之后不生效,因为我在该文件顶部打印了东西,并且返回值的部分也打印了东西都不生效。
我单独运行module.py,会报一下错误: from paddlehub.common.logger import logger ModuleNotFoundError: No module named 'paddlehub.common',但是很神奇的是在运行hub serving start -m ocr_system时候没问题。。。说明根本没走改文件。
3.当我换成python的logging时候又会报错为: AttributeError: 'OCRSystem' object has no attribute 'text_sys' 我进去看了代码说 After the 2.0.0rc version, paddle uses the dynamic graph mode by default, which will cause the execution of the static graph model to fail, so compatibility protection is required. 请问如何启动动态图
4.总结 我猜测是 sys.path.insert(0, ".")没有生效,但是我又不知道该去哪里修改对应的内容。单独运行又会说没有AttributeError: 'OCRSystem' object has no attribute 'text_sys',应该是路径制定不对,不知道为啥? ps 运行: hub serving start -m ocr_system 走cpu没问题返回了正常的预测结果,但是hub serving start -c config.json不行,关闭gpu才可以,我已经制定了gpu的卡了。
系统环境 1) hub.version '2.1.0' paddle.version'2.1.1' 2)linux,Python 3.7.10