We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
With Python 3.12 the class RapidTable missing this atributtes:
'get_boxes_recs', 'load_img', 'ocr_engine',
With Python 3.12
table_engine = RapidTable(model_path='./models/table/en_ppstructure_mobile_v2_SLANet.onnx') dir(table_engine) 2024-09-12 15:23:06,914 - rapid_layout - INFO: pp_layout_cdla contains ['table'] ['call', 'class', 'delattr', 'dict', 'dir', 'doc', 'eq', 'format', 'ge', 'getattribute', 'getstate', 'gt', 'hash', 'init', 'init_subclass', 'le', 'lt', 'module', 'ne', 'new', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof', 'str', 'subclasshook', 'weakref', '_ocr', 'ocr_sys', 'table_matcher', 'table_structure']
With Python 3.11 : table_engine = RapidTable(model_path='./models/table/en_ppstructure_mobile_v2_SLANet.onnx') dir(table_engine) ['call', 'class', 'delattr', 'dict', 'dir', 'doc', 'eq', 'format', 'ge', 'getattribute', 'getstate', 'gt', 'hash', 'init', 'init_subclass', 'le', 'lt', 'module', 'ne', 'new', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof', 'str', 'subclasshook', 'weakref', 'get_boxes_recs', 'load_img', 'ocr_engine', 'table_matcher', 'table_structure']
Any solution?
Thanks in advance
The text was updated successfully, but these errors were encountered:
is it wrong for you to run table rec with py3.12?
Sorry, something went wrong.
No branches or pull requests
Hi
With Python 3.12 the class RapidTable missing this atributtes:
'get_boxes_recs',
'load_img',
'ocr_engine',
With Python 3.12
table_engine = RapidTable(model_path='./models/table/en_ppstructure_mobile_v2_SLANet.onnx')
dir(table_engine)
2024-09-12 15:23:06,914 - rapid_layout - INFO: pp_layout_cdla contains ['table']
['call',
'class',
'delattr',
'dict',
'dir',
'doc',
'eq',
'format',
'ge',
'getattribute',
'getstate',
'gt',
'hash',
'init',
'init_subclass',
'le',
'lt',
'module',
'ne',
'new',
'reduce',
'reduce_ex',
'repr',
'setattr',
'sizeof',
'str',
'subclasshook',
'weakref',
'_ocr',
'ocr_sys',
'table_matcher',
'table_structure']
With Python 3.11 :
table_engine = RapidTable(model_path='./models/table/en_ppstructure_mobile_v2_SLANet.onnx')
dir(table_engine)
['call',
'class',
'delattr',
'dict',
'dir',
'doc',
'eq',
'format',
'ge',
'getattribute',
'getstate',
'gt',
'hash',
'init',
'init_subclass',
'le',
'lt',
'module',
'ne',
'new',
'reduce',
'reduce_ex',
'repr',
'setattr',
'sizeof',
'str',
'subclasshook',
'weakref',
'get_boxes_recs',
'load_img',
'ocr_engine',
'table_matcher',
'table_structure']
Any solution?
Thanks in advance
The text was updated successfully, but these errors were encountered: