pub struct AdaGradConfig { /* private fields */ }Expand description
AdaGrad configuration.
Implementations§
Source§impl AdaGradConfig
impl AdaGradConfig
Sourcepub fn new() -> AdaGradConfig
pub fn new() -> AdaGradConfig
Create a new instance of the config.
§Arguments
§Optional Arguments
§weight_decay
Weight decay config.
- Defaults to
None
§grad_clipping
Gradient Clipping config.
- Defaults to
None
§Default Arguments
§lr_decay
- Defaults to
0.
§epsilon
- Defaults to
1e-5
Source§impl AdaGradConfig
impl AdaGradConfig
Sourcepub fn with_lr_decay(self, lr_decay: f64) -> AdaGradConfig
pub fn with_lr_decay(self, lr_decay: f64) -> AdaGradConfig
Sets the value for the field lr_decay.
- Defaults to
0.
Sourcepub fn with_epsilon(self, epsilon: f32) -> AdaGradConfig
pub fn with_epsilon(self, epsilon: f32) -> AdaGradConfig
Sets the value for the field epsilon.
- Defaults to
1e-5
Sourcepub fn with_weight_decay(
self,
weight_decay: Option<WeightDecayConfig>,
) -> AdaGradConfig
pub fn with_weight_decay( self, weight_decay: Option<WeightDecayConfig>, ) -> AdaGradConfig
Sourcepub fn with_grad_clipping(
self,
grad_clipping: Option<GradientClippingConfig>,
) -> AdaGradConfig
pub fn with_grad_clipping( self, grad_clipping: Option<GradientClippingConfig>, ) -> AdaGradConfig
Source§impl AdaGradConfig
impl AdaGradConfig
Sourcepub fn init<B, M>(&self) -> OptimizerAdaptor<AdaGrad, M, B>where
B: AutodiffBackend,
M: AutodiffModule<B>,
pub fn init<B, M>(&self) -> OptimizerAdaptor<AdaGrad, M, B>where
B: AutodiffBackend,
M: AutodiffModule<B>,
Trait Implementations§
Source§impl Clone for AdaGradConfig
impl Clone for AdaGradConfig
Source§fn clone(&self) -> AdaGradConfig
fn clone(&self) -> AdaGradConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Config for AdaGradConfig
impl Config for AdaGradConfig
Source§fn load<P>(file: P) -> Result<Self, ConfigError>
fn load<P>(file: P) -> Result<Self, ConfigError>
Loads the configuration from a file. Read more
Source§fn load_binary(data: &[u8]) -> Result<Self, ConfigError>
fn load_binary(data: &[u8]) -> Result<Self, ConfigError>
Loads the configuration from a binary buffer. Read more
Source§impl Debug for AdaGradConfig
impl Debug for AdaGradConfig
Source§impl<'de> Deserialize<'de> for AdaGradConfig
impl<'de> Deserialize<'de> for AdaGradConfig
Source§fn deserialize<D>(
deserializer: D,
) -> Result<AdaGradConfig, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<AdaGradConfig, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AdaGradConfig
impl Display for AdaGradConfig
Source§impl Serialize for AdaGradConfig
impl Serialize for AdaGradConfig
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for AdaGradConfig
impl RefUnwindSafe for AdaGradConfig
impl Send for AdaGradConfig
impl Sync for AdaGradConfig
impl Unpin for AdaGradConfig
impl UnsafeUnpin for AdaGradConfig
impl UnwindSafe for AdaGradConfig
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