pub struct RMSpropBuilder { /* private fields */ }Expand description
Builder for RMSprop with customizable options.
Implementations§
Source§impl RMSpropBuilder
impl RMSpropBuilder
Sourcepub fn weight_decay(self, wd: f64) -> Self
pub fn weight_decay(self, wd: f64) -> Self
Weight decay (L2 penalty, default 0).
Auto Trait Implementations§
impl Freeze for RMSpropBuilder
impl !RefUnwindSafe for RMSpropBuilder
impl !Send for RMSpropBuilder
impl !Sync for RMSpropBuilder
impl Unpin for RMSpropBuilder
impl UnsafeUnpin for RMSpropBuilder
impl !UnwindSafe for RMSpropBuilder
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