pub struct VariationalDropout { /* private fields */ }
Expand description
Variational dropout (Gal and Ghahramani, 2016)
For a tensor with [batch_size, seq_len, repr_size]
, apply
the same dropout [batch_size, 1, repr_size]
to each sequence
element.
Implementations§
Trait Implementations§
Source§impl Debug for VariationalDropout
impl Debug for VariationalDropout
Auto Trait Implementations§
impl Freeze for VariationalDropout
impl RefUnwindSafe for VariationalDropout
impl Send for VariationalDropout
impl Sync for VariationalDropout
impl Unpin for VariationalDropout
impl UnwindSafe for VariationalDropout
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