pub enum Vgg {
Vgg16,
Vgg16Bn,
Vgg19,
Vgg19Bn,
}
Expand description
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§
Auto Trait Implementations§
impl Freeze for Vgg
impl RefUnwindSafe for Vgg
impl Send for Vgg
impl Sync for Vgg
impl Unpin for Vgg
impl UnwindSafe for Vgg
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