mirror of
https://github.com/docling-project/docling.git
synced 2025-06-27 05:20:05 +00:00

* add coverage calculation and push Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * new codecov version and usage of token Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * enable ruff formatter instead of black and isort Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * apply ruff lint fixes Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * apply ruff unsafe fixes Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * add removed imports Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * runs 1 on linter issues Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * finalize linter fixes Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * Update pyproject.toml Co-authored-by: Cesar Berrospi Ramis <75900930+ceberam@users.noreply.github.com> Signed-off-by: Michele Dolfi <97102151+dolfim-ibm@users.noreply.github.com> --------- Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> Signed-off-by: Michele Dolfi <97102151+dolfim-ibm@users.noreply.github.com> Co-authored-by: Cesar Berrospi Ramis <75900930+ceberam@users.noreply.github.com>
104 lines
3.2 KiB
Python
104 lines
3.2 KiB
Python
# WARNING
|
|
# This example demonstrates only how to develop a new enrichment model.
|
|
# It does not run the actual picture classifier model.
|
|
|
|
import logging
|
|
from collections.abc import Iterable
|
|
from pathlib import Path
|
|
from typing import Any
|
|
|
|
from docling_core.types.doc import (
|
|
DoclingDocument,
|
|
NodeItem,
|
|
PictureClassificationClass,
|
|
PictureClassificationData,
|
|
PictureItem,
|
|
)
|
|
|
|
from docling.datamodel.base_models import InputFormat
|
|
from docling.datamodel.pipeline_options import PdfPipelineOptions
|
|
from docling.document_converter import DocumentConverter, PdfFormatOption
|
|
from docling.models.base_model import BaseEnrichmentModel
|
|
from docling.pipeline.standard_pdf_pipeline import StandardPdfPipeline
|
|
|
|
|
|
class ExamplePictureClassifierPipelineOptions(PdfPipelineOptions):
|
|
do_picture_classifer: bool = True
|
|
|
|
|
|
class ExamplePictureClassifierEnrichmentModel(BaseEnrichmentModel):
|
|
def __init__(self, enabled: bool):
|
|
self.enabled = enabled
|
|
|
|
def is_processable(self, doc: DoclingDocument, element: NodeItem) -> bool:
|
|
return self.enabled and isinstance(element, PictureItem)
|
|
|
|
def __call__(
|
|
self, doc: DoclingDocument, element_batch: Iterable[NodeItem]
|
|
) -> Iterable[Any]:
|
|
if not self.enabled:
|
|
return
|
|
|
|
for element in element_batch:
|
|
assert isinstance(element, PictureItem)
|
|
|
|
# uncomment this to interactively visualize the image
|
|
# element.get_image(doc).show()
|
|
|
|
element.annotations.append(
|
|
PictureClassificationData(
|
|
provenance="example_classifier-0.0.1",
|
|
predicted_classes=[
|
|
PictureClassificationClass(class_name="dummy", confidence=0.42)
|
|
],
|
|
)
|
|
)
|
|
|
|
yield element
|
|
|
|
|
|
class ExamplePictureClassifierPipeline(StandardPdfPipeline):
|
|
def __init__(self, pipeline_options: ExamplePictureClassifierPipelineOptions):
|
|
super().__init__(pipeline_options)
|
|
self.pipeline_options: ExamplePictureClassifierPipeline
|
|
|
|
self.enrichment_pipe = [
|
|
ExamplePictureClassifierEnrichmentModel(
|
|
enabled=pipeline_options.do_picture_classifer
|
|
)
|
|
]
|
|
|
|
@classmethod
|
|
def get_default_options(cls) -> ExamplePictureClassifierPipelineOptions:
|
|
return ExamplePictureClassifierPipelineOptions()
|
|
|
|
|
|
def main():
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
input_doc_path = Path("./tests/data/pdf/2206.01062.pdf")
|
|
|
|
pipeline_options = ExamplePictureClassifierPipelineOptions()
|
|
pipeline_options.images_scale = 2.0
|
|
pipeline_options.generate_picture_images = True
|
|
|
|
doc_converter = DocumentConverter(
|
|
format_options={
|
|
InputFormat.PDF: PdfFormatOption(
|
|
pipeline_cls=ExamplePictureClassifierPipeline,
|
|
pipeline_options=pipeline_options,
|
|
)
|
|
}
|
|
)
|
|
result = doc_converter.convert(input_doc_path)
|
|
|
|
for element, _level in result.document.iterate_items():
|
|
if isinstance(element, PictureItem):
|
|
print(
|
|
f"The model populated the `data` portion of picture {element.self_ref}:\n{element.annotations}"
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|