Struct Conv2dBackward
pub struct Conv2dBackward<B>where
B: Backend,{
pub x_grad: <B as Backend>::FloatTensorPrimitive,
pub weights_grad: <B as Backend>::FloatTensorPrimitive,
pub bias_grad: Option<<B as Backend>::FloatTensorPrimitive>,
}Expand description
Gradient computed during the backward pass for each tensor used by conv2d.
Fields§
§x_grad: <B as Backend>::FloatTensorPrimitiveGradient.
weights_grad: <B as Backend>::FloatTensorPrimitiveWeights gradient.
bias_grad: Option<<B as Backend>::FloatTensorPrimitive>Bias gradient.
Implementations§
§impl<B> Conv2dBackward<B>where
B: Backend,
impl<B> Conv2dBackward<B>where
B: Backend,
pub fn new(
x_grad: <B as Backend>::FloatTensorPrimitive,
weights_grad: <B as Backend>::FloatTensorPrimitive,
bias_grad: Option<<B as Backend>::FloatTensorPrimitive>,
) -> Conv2dBackward<B>
pub fn new( x_grad: <B as Backend>::FloatTensorPrimitive, weights_grad: <B as Backend>::FloatTensorPrimitive, bias_grad: Option<<B as Backend>::FloatTensorPrimitive>, ) -> Conv2dBackward<B>
Constructs a new Conv2dBackward.
Auto Trait Implementations§
impl<B> Freeze for Conv2dBackward<B>
impl<B> RefUnwindSafe for Conv2dBackward<B>
impl<B> Send for Conv2dBackward<B>
impl<B> Sync for Conv2dBackward<B>
impl<B> Unpin for Conv2dBackward<B>
impl<B> UnwindSafe for Conv2dBackward<B>
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> 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