pub struct ConvTranspose3dBuilder {
pub input_channels: i32,
pub output_channels: i32,
pub kernel_size: SingleOrTriple<i32>,
pub bias: bool,
pub padding: SingleOrTriple<i32>,
pub stride: SingleOrTriple<i32>,
}
Expand description
Builder for the ConvTranspose3d
module.
Fields§
§input_channels: i32
The number of input channels.
output_channels: i32
The number of output channels.
kernel_size: SingleOrTriple<i32>
The size of the convolution filters.
bias: bool
If true
, add a learnable bias to the output. Default to ConvTranspose3d::DEFAULT_BIAS
if not
specified.
padding: SingleOrTriple<i32>
Padding. Default to ConvTranspose3d::DEFAULT_PADDING
if not specified.
stride: SingleOrTriple<i32>
Stride. Default to ConvTranspose3d::DEFAULT_STRIDE
if not specified.
Implementations§
Source§impl ConvTranspose3dBuilder
impl ConvTranspose3dBuilder
Sourcepub fn new(
input_channels: impl Into<i32>,
output_channels: impl Into<i32>,
kernel_size: impl Into<SingleOrTriple<i32>>,
) -> Self
pub fn new( input_channels: impl Into<i32>, output_channels: impl Into<i32>, kernel_size: impl Into<SingleOrTriple<i32>>, ) -> Self
Creates a new ConvTranspose3dBuilder
.
Trait Implementations§
Source§impl Clone for ConvTranspose3dBuilder
impl Clone for ConvTranspose3dBuilder
Source§fn clone(&self) -> ConvTranspose3dBuilder
fn clone(&self) -> ConvTranspose3dBuilder
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ConvTranspose3dBuilder
impl RefUnwindSafe for ConvTranspose3dBuilder
impl Send for ConvTranspose3dBuilder
impl Sync for ConvTranspose3dBuilder
impl Unpin for ConvTranspose3dBuilder
impl UnwindSafe for ConvTranspose3dBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreSource§impl<T> IntoOption<T> for T
impl<T> IntoOption<T> for T
Source§fn into_option(self) -> Option<T>
fn into_option(self) -> Option<T>
Convert into an
Option
.