| 12345678910111213141516 |
- """
- Models Package
- Contains AI model wrappers for audio, defect detection, locule counting, maturity classification, and shape classification.
- """
- from .audio_model import AudioModel
- from .defect_model import DefectModel
- from .locule_model import LoculeModel
- from .maturity_model import MaturityModel
- from .shape_model import ShapeModel
- __all__ = ['AudioModel', 'DefectModel', 'LoculeModel', 'MaturityModel', 'ShapeModel']
|