Expand description
Message types for Edge Impulse model communication.
This module defines the message structures used for communication between the runner and the Edge Impulse model process via Unix sockets. All messages are serialized to JSON for transmission.
The communication follows a request-response pattern with the following types:
- Initialization messages (
HelloMessage
) - Classification requests (
ClassifyMessage
) - Model information responses (
ModelInfo
) - Inference results (
InferenceResponse
) - Error responses (
ErrorResponse
) - Threshold messages (
SetThresholdMessage
)
Structs§
- Message containing features for classification.
- Response indicating an error condition.
- Initial handshake message sent to the model process.
- Response containing inference results.
- Response containing model information and parameters.
- Message for setting model thresholds
- Different types of threshold configurations that can be set
Enums§
- Represents different types of inference results.