We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5740ffc commit c167fbaCopy full SHA for c167fba
src/layoutparser/__init__.py
@@ -12,4 +12,8 @@
12
from .ocr import (
13
GCVFeatureType, GCVAgent,
14
TesseractFeatureType, TesseractAgent
15
+)
16
+
17
+from .models import (
18
+ Detectron2LayoutModel
19
)
src/layoutparser/models.py
@@ -5,6 +5,8 @@
5
from detectron2.engine import DefaultPredictor
6
from .elements import *
7
8
+__all__ = ['Detectron2LayoutModel']
9
10
11
class BaseLayoutModel(ABC):
0 commit comments