__init__.pyi 493 B

1234567891011121314
  1. # Explicitly setting `__all__` is necessary for type inference engines
  2. # to know which symbols are exported. See
  3. # https://peps.python.org/pep-0484/#stub-files
  4. __all__ = [
  5. "manual_lasso_segmentation",
  6. "manual_polygon_segmentation",
  7. "fit_segmenter",
  8. "predict_segmenter",
  9. "TrainableSegmenter",
  10. ]
  11. from .manual_segmentation import manual_lasso_segmentation, manual_polygon_segmentation
  12. from .trainable_segmentation import TrainableSegmenter, fit_segmenter, predict_segmenter