pub struct Conv2DBuilder { /* private fields */ }Expand description
Builder for creating Conv2D layers
Implementations§
Source§impl Conv2DBuilder
impl Conv2DBuilder
Sourcepub const fn filter_size(self, height: usize, width: usize) -> Self
pub const fn filter_size(self, height: usize, width: usize) -> Self
Set filter dimensions
Sourcepub fn activation(self, activation: ActivationFunc) -> Self
pub fn activation(self, activation: ActivationFunc) -> Self
Set activation function
Auto Trait Implementations§
impl Freeze for Conv2DBuilder
impl RefUnwindSafe for Conv2DBuilder
impl Send for Conv2DBuilder
impl Sync for Conv2DBuilder
impl Unpin for Conv2DBuilder
impl UnwindSafe for Conv2DBuilder
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