#[repr(u32)]pub enum ConvGradientType {
FILTER = 1,
DATA = 2,
BIAS = 3,
DEFAULT = 0,
}Expand description
Gradient mode for convolution
Variants§
FILTER = 1
Filter Gradient
DATA = 2
Data Gradient
BIAS = 3
Biased Gradient
DEFAULT = 0
Default is Data Gradient
Trait Implementations§
Source§impl Clone for ConvGradientType
impl Clone for ConvGradientType
Source§fn clone(&self) -> ConvGradientType
fn clone(&self) -> ConvGradientType
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 ConvGradientType
impl Debug for ConvGradientType
Source§impl PartialEq for ConvGradientType
impl PartialEq for ConvGradientType
impl Copy for ConvGradientType
impl StructuralPartialEq for ConvGradientType
Auto Trait Implementations§
impl Freeze for ConvGradientType
impl RefUnwindSafe for ConvGradientType
impl Send for ConvGradientType
impl Sync for ConvGradientType
impl Unpin for ConvGradientType
impl UnwindSafe for ConvGradientType
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