File size: 319 Bytes
18e4106 |
1 2 3 4 5 6 7 8 9 10 |
from pdf_extract_kit.tasks.layout_detection.models.yolo import LayoutDetectionYOLO
# from pdf_extract_kit.tasks.layout_detection.models.layoutlmv3 import LayoutDetectionLayoutlmv3
from pdf_extract_kit.registry.registry import MODEL_REGISTRY
__all__ = [
"LayoutDetectionYOLO",
# "LayoutDetectionLayoutlmv3",
]
|