edge_impulse_runner::types

Struct ModelParameters

Source
pub struct ModelParameters {
Show 19 fields pub axis_count: u32, pub frequency: f32, pub has_anomaly: RunnerHelloHasAnomaly, pub has_object_tracking: bool, pub image_channel_count: u32, pub image_input_frames: u32, pub image_input_height: u32, pub image_input_width: u32, pub image_resize_mode: String, pub inferencing_engine: u32, pub input_features_count: u32, pub interval_ms: f32, pub label_count: u32, pub labels: Vec<String>, pub model_type: String, pub sensor: i32, pub slice_size: u32, pub thresholds: Vec<ModelThreshold>, pub use_continuous_mode: bool,
}
Expand description

Parameters that define a model’s configuration and capabilities.

These parameters are received from the model during initialization and describe the model’s input requirements, processing settings, and output characteristics.

Fields§

§axis_count: u32

Number of axes for motion/positional data (e.g., 3 for xyz accelerometer)

§frequency: f32

Sampling frequency in Hz for time-series data

§has_anomaly: RunnerHelloHasAnomaly

Indicates if the model supports anomaly detection

§has_object_tracking: bool

Indicates if the model supports object tracking (0 = no, 1 = yes)

§image_channel_count: u32

Number of color channels in input images (1 = grayscale, 3 = RGB)

§image_input_frames: u32

Number of consecutive frames required for video input

§image_input_height: u32

Required height of input images in pixels

§image_input_width: u32

Required width of input images in pixels

§image_resize_mode: String

Method used to resize input images (“fit” or “fill”)

§inferencing_engine: u32

Type of inferencing engine (0 = TensorFlow Lite, 1 = TensorFlow.js)

§input_features_count: u32

Total number of input features expected by the model

§interval_ms: f32

Time interval between samples in milliseconds

§label_count: u32

Number of classification labels

§labels: Vec<String>

Vector of classification labels

§model_type: String

Type of model (“classification”, “object-detection”, etc.)

§sensor: i32

Type of input sensor (see SensorType enum)

§slice_size: u32

Size of the processing window for time-series data

§thresholds: Vec<ModelThreshold>

Vector of thresholds for different types of detections

§use_continuous_mode: bool

Whether the model supports continuous mode operation

Trait Implementations§

Source§

impl Clone for ModelParameters

Source§

fn clone(&self) -> ModelParameters

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ModelParameters

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ModelParameters

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ModelParameters

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T