__init__.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 .chart_parsing import ChartParsing
  15. from .doc_img_orientation_classification import DocImgOrientationClassification
  16. from .doc_vlm import DocVLM
  17. from .formula_recognition import FormulaRecognition
  18. from .layout_detection import LayoutDetection
  19. from .seal_text_detection import SealTextDetection
  20. from .table_cells_detection import TableCellsDetection
  21. from .table_classification import TableClassification
  22. from .table_structure_recognition import TableStructureRecognition
  23. from .text_detection import TextDetection
  24. from .text_image_unwarping import TextImageUnwarping
  25. from .textline_orientation_classification import TextLineOrientationClassification
  26. from .text_recognition import TextRecognition
  27. __all__ = [
  28. "ChartParsing",
  29. "DocImgOrientationClassification",
  30. "DocVLM",
  31. "FormulaRecognition",
  32. "LayoutDetection",
  33. "SealTextDetection",
  34. "TableCellsDetection",
  35. "TableClassification",
  36. "TableStructureRecognition",
  37. "TextDetection",
  38. "TextImageUnwarping",
  39. "TextLineOrientationClassification",
  40. "TextRecognition",
  41. ]