ModuleNotFoundError:没有名为“paddle.fluid.core_noavx”的模块?

发布于 2025-01-11 11:13:09 字数 632 浏览 0 评论 0原文

我还安装了 paddle_ocr 和 paddlepaddle 包,但出现错误(ModuleNotFoundError:没有名为“paddle.fluid.core_noavx”的模块)。如何解决此类错误,请在此处提供您的建议...下面附有我的代码

 from paddleocr import PaddleOCR,draw_ocr
# Paddleocr supports Chinese, English, French, German, Korean and Japanese.
# You can set the parameter `lang` as `ch`, `en`, `french`, `german`, `korean`, `japan`
# to switch the language model in order.
ocr = PaddleOCR(use_angle_cls=True, lang='en') # need to run only once to download and load model into memory
img_path = 'PaddleOCR/doc/imgs_en/img_12.jpg'
result = ocr.ocr(img_path, cls=True)
for line in result:
    print(line)

I install paddle_ocr and paddlepaddle packages also but i got an Error (ModuleNotFoundError: No module named 'paddle.fluid.core_noavx'). how to solve this type of error provide your suggestions here...below my code was attached

 from paddleocr import PaddleOCR,draw_ocr
# Paddleocr supports Chinese, English, French, German, Korean and Japanese.
# You can set the parameter `lang` as `ch`, `en`, `french`, `german`, `korean`, `japan`
# to switch the language model in order.
ocr = PaddleOCR(use_angle_cls=True, lang='en') # need to run only once to download and load model into memory
img_path = 'PaddleOCR/doc/imgs_en/img_12.jpg'
result = ocr.ocr(img_path, cls=True)
for line in result:
    print(line)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怪我鬧 2025-01-18 11:13:09

看起来 paddle 包是为多个平台开发的,包括没有 AVX 指令集的非 x86 架构。当为每个架构编译包时,它会检查是否实现了 AVX,然后修改包以具有 paddle.fluid.core_avxpaddle.fluid.core_noavx 命名空间。

如果您想以编程方式处理此问题,paddle.fluid.core 有一个变量 has_noavx_core 您可以检查。

from paddle.fluid.core import has_noavx_core

if has_noavx_core:
    import paddle.fluid.core_noavx as core_noavx

It looks like the paddle package is developed for multiple platforms including non-x86 architectures that don't have the AVX instruction set. When the package is compiled for each architecture it checks if AVX is implemented and then modifies the packaging to have either the paddle.fluid.core_avx or paddle.fluid.core_noavx namespace.

If you want to handle this programmatically, paddle.fluid.core has a variable has_noavx_core that you can check.

from paddle.fluid.core import has_noavx_core

if has_noavx_core:
    import paddle.fluid.core_noavx as core_noavx
相对绾红妆 2025-01-18 11:13:09

机器不支持avx,可以尝试:

python3 -m pip install paddlepaddle-gpu==2.0.2 -f https://paddlepaddle.org.cn/whl/stable/noavx.html

如果使用CPU环境,去掉gpu

The machine does not support avx, you can try:

python3 -m pip install paddlepaddle-gpu==2.0.2 -f https://paddlepaddle.org.cn/whl/stable/noavx.html

If the CPU environment is used, remove the gpu

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文