forked from Filimoa/open-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
35 lines (34 loc) · 889 Bytes
/
__init__.py
File metadata and controls
35 lines (34 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from .ingest import (
IngestionPipeline,
BasicIngestionPipeline,
SemanticIngestionPipeline,
NoOpIngestionPipeline,
)
from .basic_transforms import (
ProcessingStep,
RemoveTextInsideTables,
RemoveFullPageStubs,
RemoveMetadataElements,
RemoveRepeatedElements,
CombineBullets,
CombineHeadingsWithClosestText,
CombineNodesSpatially,
RemoveNodesBelowNTokens,
)
from .semantic_transforms import CombineNodesSemantically
__all__ = [
"ProcessingStep",
"RemoveTextInsideTables",
"RemoveFullPageStubs",
"RemoveMetadataElements",
"RemoveRepeatedElements",
"CombineHeadingsWithClosestText",
"CombineBullets",
"CombineNodesSpatially",
"BasicIngestionPipeline",
"IngestionPipeline",
"SemanticIngestionPipeline",
"NoOpIngestionPipeline",
"RemoveNodesBelowNTokens",
"CombineNodesSemantically",
]