You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the PaddleOCR Docs and found no similar bug report.
I have searched the PaddleOCR Issues and found no similar bug report.
I have searched the PaddleOCR Discussions and found no similar bug report.
🐛 Bug (问题描述)
windows下 使用gpu无法识别 全是none 将usegpu设置为false就可以正常使用
🏃♂️ Environment (运行环境)
OS windows 10
python 3.10.10
gpu rtx5080
cpu 9800x3d
cuda 12.9
paddle已安装gpu版本
🌰 Minimal Reproducible Example (最小可复现问题的Demo)
以下是我的代码
from paddleocr import PaddleOCR, draw_ocr
ocr = PaddleOCR(use_angle_cls=True, lang='ch') # need to run only once to download and load model into memory
img_path = '.\material\test\test.jpg'
result = ocr.ocr(img_path, cls=True)
for idx in range(len(result)):
res = result[idx]
for line in res:
print(line)
The text was updated successfully, but these errors were encountered:
🔎 Search before asking
🐛 Bug (问题描述)
windows下 使用gpu无法识别 全是none 将usegpu设置为false就可以正常使用
🏃♂️ Environment (运行环境)
OS windows 10
python 3.10.10
gpu rtx5080
cpu 9800x3d
cuda 12.9
paddle已安装gpu版本
🌰 Minimal Reproducible Example (最小可复现问题的Demo)
以下是我的代码
from paddleocr import PaddleOCR, draw_ocr
ocr = PaddleOCR(use_angle_cls=True, lang='ch') # need to run only once to download and load model into memory
img_path = '.\material\test\test.jpg'
result = ocr.ocr(img_path, cls=True)
for idx in range(len(result)):
res = result[idx]
for line in res:
print(line)
The text was updated successfully, but these errors were encountered: