pub enum PreprocessingPreset {
ImageNet,
Yolo,
Coco,
Zero255,
}Expand description
Preprocessing presets for common model families
Variants§
ImageNet
ImageNet normalization (mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])
Yolo
YOLO normalization (mean=[0.0, 0.0, 0.0], std=[255.0, 255.0, 255.0] -> [0, 1])
Coco
COCO normalization (same as ImageNet)
Zero255
No normalization ([0, 255] range)
Implementations§
Trait Implementations§
Source§impl Clone for PreprocessingPreset
impl Clone for PreprocessingPreset
Source§fn clone(&self) -> PreprocessingPreset
fn clone(&self) -> PreprocessingPreset
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PreprocessingPreset
impl Debug for PreprocessingPreset
impl Copy for PreprocessingPreset
Auto Trait Implementations§
impl Freeze for PreprocessingPreset
impl RefUnwindSafe for PreprocessingPreset
impl Send for PreprocessingPreset
impl Sync for PreprocessingPreset
impl Unpin for PreprocessingPreset
impl UnwindSafe for PreprocessingPreset
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more