Training mode is not supported in this build. #22
-
请提供下述完整信息以便快速定位问题
How to disable Training mode? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I tested the program in Google Colab, and do not meet the problem. For example code: pip install rapid_latex_ocr from rapid_latex_ocr import LatexOCR
model = LatexOCR()
img_path = "6.png"
with open(img_path, "rb") as f:
data = f.read()
res, elapse = model(data)
print(res)
print(elapse) |
Beta Was this translation helpful? Give feedback.
I tested the program in Google Colab, and do not meet the problem.
Can you try to test it on the Google Colab?
I want to ensure that the error can be reproduce.
For example code: