__init__.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Copyright (c) 2025 PaddlePaddle Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from .doc_preprocessor import DocPreprocessor
  15. from .doc_understanding import DocUnderstanding
  16. from .formula_recognition import FormulaRecognitionPipeline
  17. from .ocr import PaddleOCR
  18. from .paddleocr_vl import PaddleOCRVL
  19. from .pp_chatocrv4_doc import PPChatOCRv4Doc
  20. from .pp_doctranslation import PPDocTranslation
  21. from .pp_structurev3 import PPStructureV3
  22. from .seal_recognition import SealRecognition
  23. from .table_recognition_v2 import TableRecognitionPipelineV2
  24. __all__ = [
  25. "DocPreprocessor",
  26. "DocUnderstanding",
  27. "FormulaRecognitionPipeline",
  28. "PaddleOCR",
  29. "PaddleOCRVL",
  30. "PPChatOCRv4Doc",
  31. "PPDocTranslation",
  32. "PPStructureV3",
  33. "SealRecognition",
  34. "TableRecognitionPipelineV2",
  35. ]