layout-parser icon indicating copy to clipboard operation
layout-parser copied to clipboard

Cannot Usage lp.models. Detectron2LayoutModel

Open mertakcay opened this issue 2 years ago • 1 comments

Describe the bug I cannot use Decetron2LayoutModel despite successfully install.

Usage of LP

lp.models.Detectron2LayoutModel(...)
lp.Detectron2LayoutModel(...)

Environment

  1. On MacOS having M1 chip
  2. '0.3.4' Version
  3. With Pip Env on VSCode JupyterNotebook

Error traceback AttributeError: partially initialized module 'layoutparser' has no attribute 'Detectron2LayoutModel' (most likely due to a circular import)

mertakcay avatar Apr 03 '23 12:04 mertakcay

This most likely not a bug. The error says it's most likely due to a circular import. This happens when the filename of the python program has the same name as another module it imports. So, in this case, I'm guessing the filename of your python program is layoutparser.py and it's calling import layoutparser as lp in it. Change the filename to something else, and it should work.

jjbiggins avatar May 02 '23 02:05 jjbiggins