pub struct AdaGrad { /* private fields */ }Expand description
AdaGrad optimizer
Implementations§
Source§impl AdaGrad
impl AdaGrad
Sourcepub fn new(learning_rate: f32, epsilon: f32) -> Self
pub fn new(learning_rate: f32, epsilon: f32) -> Self
Create new AdaGrad optimizer 新しいAdaGradオプティマイザーを作成
Sourcepub fn default_params(learning_rate: f32) -> Self
pub fn default_params(learning_rate: f32) -> Self
Create AdaGrad with default parameters デフォルトパラメータでAdaGradを作成
Sourcepub fn with_weight_decay(
learning_rate: f32,
epsilon: f32,
weight_decay: f32,
) -> Self
pub fn with_weight_decay( learning_rate: f32, epsilon: f32, weight_decay: f32, ) -> Self
Create AdaGrad with weight decay 重み減衰付きAdaGradを作成
Sourcepub fn with_initial_accumulator(
learning_rate: f32,
epsilon: f32,
initial_accumulator_value: f32,
) -> Self
pub fn with_initial_accumulator( learning_rate: f32, epsilon: f32, initial_accumulator_value: f32, ) -> Self
Create AdaGrad with initial accumulator value 初期アキュムレータ値付きAdaGradを作成
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdaGrad
impl RefUnwindSafe for AdaGrad
impl Send for AdaGrad
impl Sync for AdaGrad
impl Unpin for AdaGrad
impl UnwindSafe for AdaGrad
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 more