Paddle Fail to fscanf: Success [0]

iih3973s  于 5个月前  发布在  其他
关注(0)|答案(1)|浏览(44)

请提出你的问题 Please ask your question

你好,我们在PaddleOCR issue #12138 遇到这个问题了。

猜测是PaddlePaddle GPU版导致的,但是搜遍全网,只有brpc issue #2639 中说过这个问题,其他地方再无踪迹,不得已,才来此求助。

希望给判断一下是什么问题?有没有什么办法去掉这个log

qco9c6ql

qco9c6ql1#

我也遇到同样的问题,报错日志如下。

尝试了gunicorn的各个mode,比如gthread、sync、gevent都不行。
单独启动python程序,不会报错
所以,怀疑和gunicorn或wsgi有关系,且和 WARNING: Logging before InitGoogleLogging() is written to STDERR 有密切关系。
网上没有响应的解决办法,希望官方找个gunicorn启动一个python的paddle推理程序试试。
这个warning一秒钟报一次,太影响日志的查看了。
虽然报错不停,但是不影响正常推理

我用的python版本是3.8,paddlepaddle是2.5.2(GPU版本),gunicorn和flask版本应该没关系,随意即可。

# gunicorn wsgi:app -c gunicorn_conf.py -k gthread -w 1
[2024-06-27 14:31:02,505] [4906] [INFO] Starting gunicorn 22.0.0
[2024-06-27 14:31:02,506] [4906] [INFO] Listening at: http://0.0.0.0:9090 (4906)
[2024-06-27 14:31:02,506] [4906] [INFO] Using worker: gthread
[2024-06-27 14:31:02,509] [4908] [INFO] Booting worker with pid: 4908
WARNING: Logging before InitGoogleLogging() is written to STDERR
W0627 14:31:03.140107  4908 default_variables.cpp:95] Fail to fscanf: Success [0]
W0627 14:31:04.150472  5018 default_variables.cpp:95] Fail to fscanf: Success [0]
W0627 14:31:05.150521  5018 default_variables.cpp:95] Fail to fscanf: Success [0]
W0627 14:31:06.150601  5018 default_variables.cpp:95] Fail to fscanf: Success [0]
W0627 14:31:07.150672  5018 default_variables.cpp:95] Fail to fscanf: Success [0]
W0627 14:31:08.150738  5018 default_variables.cpp:95] Fail to fscanf: Success [0]

相关问题