Loading an AI Model
This is an end-to-end guide for loading a model. You'll start with connecting to an inference engine and model zoo, learn about filtering model lists, then loading a model.
Connect to an Inference Engine and Model Zoo
import degirum
degirum.connect(
inference_host_address = "@local",
zoo_url = "workspace/zoo",
token = "<your_token>"
)degirum.connect()
Zoo URL Parsing Behavior
Inference Type
Model Zoo Type
Usage Example
Retrieve Supported Devices, Filter Models, then Load Models
ZooManager.supported_device_types()
ZooManager.list_models()
Use Cases
Example Usage
Available Filtering Parameters and Their Sources
Parameter
Possible Values
Source of Information
Combine list_models() with supported_device_types() to Find Supported Models
ZooManager.load_model()
Basic Usage
Passing Model Properties as Arguments
Convenience Functions
degirum.get_supported_devices()
Function Signature:
Example:
degirum.list_models()
Function Signature:
degirum.load_model()
Minimum Code Example
Was this helpful?

