pub struct Conv3d { /* private fields */ }Expand description
A 3×3×3 convolution with zero spatial padding and replicate padding in
time. Weights are [Cout, Cin, 3, 3, 3] flattened to [Cout, Cin·27].
Implementations§
Auto Trait Implementations§
impl Freeze for Conv3d
impl RefUnwindSafe for Conv3d
impl Send for Conv3d
impl Sync for Conv3d
impl Unpin for Conv3d
impl UnsafeUnpin for Conv3d
impl UnwindSafe for Conv3d
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