Overview of the PyCoral API modules
masterThe PyCoral library is organized into several functional modules designed for working with Coral Edge TPU models. Key functional areas include:
- Adapters: High-level interfaces for common tasks like image classification (
pycoral.adapters.classify) and object detection (pycoral.adapters.detect). - Utils: Utility modules for dataset management (
pycoral.utils.dataset) and Edge TPU hardware interaction (pycoral.utils.edgetpu). - Pipeline: Advanced execution patterns, such as the
pycoral.pipeline.pipelined_model_runnerfor optimized model inference. - Learning: Modules for model fine-tuning and adaptation, including backpropagation-based methods (
pycoral.learn.backprop.softmax_regression) and imprinting engines (pycoral.learn.imprinting.engine).