pub enum IqnExplorer {
Softmax(Softmax),
EpsilonGreedy(EpsilonGreedy),
}Expand description
Explorers for IQN.
Variants§
Softmax(Softmax)
Softmax action selection.
EpsilonGreedy(EpsilonGreedy)
Epsilon-greedy action selection.
Trait Implementations§
Source§impl Clone for IqnExplorer
impl Clone for IqnExplorer
Source§fn clone(&self) -> IqnExplorer
fn clone(&self) -> IqnExplorer
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 IqnExplorer
impl Debug for IqnExplorer
Source§impl<'de> Deserialize<'de> for IqnExplorer
impl<'de> Deserialize<'de> for IqnExplorer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for IqnExplorer
impl PartialEq for IqnExplorer
Source§impl Serialize for IqnExplorer
impl Serialize for IqnExplorer
impl StructuralPartialEq for IqnExplorer
Auto Trait Implementations§
impl Freeze for IqnExplorer
impl RefUnwindSafe for IqnExplorer
impl Send for IqnExplorer
impl Sync for IqnExplorer
impl Unpin for IqnExplorer
impl UnwindSafe for IqnExplorer
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