[][src]Enum onnxruntime::download::vision::image_classification::Vgg

pub enum Vgg {
    Vgg16,
    Vgg16Bn,
    Vgg19,
    Vgg19Bn,
}

Variants

Vgg16

VGG with 16 convolutional layers

Variant downloaded: ONNX Version 1.2.1 with Opset Version 7.

Vgg16Bn

VGG with 16 convolutional layers, with batch normalization applied after each convolutional layer.

The batch normalization leads to better convergence and slightly better accuracies.

Variant downloaded: ONNX Version 1.2.1 with Opset Version 7.

Vgg19

VGG with 19 convolutional layers

Variant downloaded: ONNX Version 1.2.1 with Opset Version 7.

Vgg19Bn

VGG with 19 convolutional layers, with batch normalization applied after each convolutional layer.

The batch normalization leads to better convergence and slightly better accuracies.

Variant downloaded: ONNX Version 1.2.1 with Opset Version 7.

Trait Implementations

impl Clone for Vgg[src]

impl Debug for Vgg[src]

impl From<Vgg> for AvailableOnnxModel[src]

Auto Trait Implementations

impl RefUnwindSafe for Vgg

impl Send for Vgg

impl Sync for Vgg

impl Unpin for Vgg

impl UnwindSafe for Vgg

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.