pub enum InferenceResult {
Classification {
classification: HashMap<String, f32>,
},
ObjectDetection {
bounding_boxes: Vec<BoundingBox>,
classification: HashMap<String, f32>,
},
VisualAnomaly {
visual_anomaly_grid: Vec<BoundingBox>,
visual_anomaly_max: f32,
visual_anomaly_mean: f32,
anomaly: f32,
},
}
Expand description
Represents different types of inference results.
Models can produce different types of outputs depending on their type:
- Classification models return class probabilities
- Object detection models return bounding boxes and optional classifications
Variants§
Classification
Result from a classification model
ObjectDetection
Result from an object detection model
Fields
§
bounding_boxes: Vec<BoundingBox>
Vector of detected objects with their bounding boxes
VisualAnomaly
Result from a visual anomaly detection model
Trait Implementations§
Source§impl Debug for InferenceResult
impl Debug for InferenceResult
Source§impl<'de> Deserialize<'de> for InferenceResult
impl<'de> Deserialize<'de> for InferenceResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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§
impl Freeze for InferenceResult
impl RefUnwindSafe for InferenceResult
impl Send for InferenceResult
impl Sync for InferenceResult
impl Unpin for InferenceResult
impl UnwindSafe for InferenceResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more