Struct DeformConv2dBackward
pub struct DeformConv2dBackward<B>where
B: Backend,{
pub x_grad: <B as Backend>::FloatTensorPrimitive,
pub offset_grad: <B as Backend>::FloatTensorPrimitive,
pub weight_grad: <B as Backend>::FloatTensorPrimitive,
pub mask_grad: Option<<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 deform_conv2d.
Fields§
§x_grad: <B as Backend>::FloatTensorPrimitiveGradient.
offset_grad: <B as Backend>::FloatTensorPrimitiveOffset gradient.
weight_grad: <B as Backend>::FloatTensorPrimitiveWeights gradient.
mask_grad: Option<<B as Backend>::FloatTensorPrimitive>Mask gradient.
bias_grad: Option<<B as Backend>::FloatTensorPrimitive>Bias gradient.
Implementations§
§impl<B> DeformConv2dBackward<B>where
B: Backend,
impl<B> DeformConv2dBackward<B>where
B: Backend,
pub fn new(
x_grad: <B as Backend>::FloatTensorPrimitive,
offset_grad: <B as Backend>::FloatTensorPrimitive,
weight_grad: <B as Backend>::FloatTensorPrimitive,
mask_grad: Option<<B as Backend>::FloatTensorPrimitive>,
bias_grad: Option<<B as Backend>::FloatTensorPrimitive>,
) -> DeformConv2dBackward<B>
pub fn new( x_grad: <B as Backend>::FloatTensorPrimitive, offset_grad: <B as Backend>::FloatTensorPrimitive, weight_grad: <B as Backend>::FloatTensorPrimitive, mask_grad: Option<<B as Backend>::FloatTensorPrimitive>, bias_grad: Option<<B as Backend>::FloatTensorPrimitive>, ) -> DeformConv2dBackward<B>
Constructs a new DeformConv2dBackward.
Auto Trait Implementations§
impl<B> Freeze for DeformConv2dBackward<B>
impl<B> RefUnwindSafe for DeformConv2dBackward<B>
impl<B> Send for DeformConv2dBackward<B>
impl<B> Sync for DeformConv2dBackward<B>
impl<B> Unpin for DeformConv2dBackward<B>
impl<B> UnwindSafe for DeformConv2dBackward<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