pub struct TD3StepConfig {
pub gamma: f32,
pub tau: f32,
pub policy_delay: usize,
pub target_noise: f32,
pub noise_clip: f32,
}Expand description
TD3 step configuration.
Fields§
§gamma: f32§tau: f32§policy_delay: usize§target_noise: f32§noise_clip: f32Trait Implementations§
Source§impl Clone for TD3StepConfig
impl Clone for TD3StepConfig
Source§fn clone(&self) -> TD3StepConfig
fn clone(&self) -> TD3StepConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TD3StepConfig
impl Debug for TD3StepConfig
Auto Trait Implementations§
impl Freeze for TD3StepConfig
impl RefUnwindSafe for TD3StepConfig
impl Send for TD3StepConfig
impl Sync for TD3StepConfig
impl Unpin for TD3StepConfig
impl UnwindSafe for TD3StepConfig
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