Struct ExplorationRateMetric
pub struct ExplorationRateMetric { /* private fields */ }Expand description
Metric for the length of the last completed episode.
Implementations§
§impl ExplorationRateMetric
impl ExplorationRateMetric
pub fn new() -> ExplorationRateMetric
pub fn new() -> ExplorationRateMetric
Creates a new episode length metric.
Trait Implementations§
§impl Clone for ExplorationRateMetric
impl Clone for ExplorationRateMetric
§fn clone(&self) -> ExplorationRateMetric
fn clone(&self) -> ExplorationRateMetric
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 more§impl Default for ExplorationRateMetric
impl Default for ExplorationRateMetric
§fn default() -> ExplorationRateMetric
fn default() -> ExplorationRateMetric
Returns the “default value” for a type. Read more
§impl Metric for ExplorationRateMetric
impl Metric for ExplorationRateMetric
§type Input = ExplorationRateInput
type Input = ExplorationRateInput
The input type of the metric.
§fn update(
&mut self,
item: &ExplorationRateInput,
_metadata: &MetricMetadata,
) -> SerializedEntry
fn update( &mut self, item: &ExplorationRateInput, _metadata: &MetricMetadata, ) -> SerializedEntry
Update the metric state and returns the current metric entry.
§fn attributes(&self) -> MetricAttributes
fn attributes(&self) -> MetricAttributes
Attributes of the metric. Read more
§fn description(&self) -> Option<String>
fn description(&self) -> Option<String>
A short description of the metric.
§impl Numeric for ExplorationRateMetric
impl Numeric for ExplorationRateMetric
§fn value(&self) -> NumericEntry
fn value(&self) -> NumericEntry
Returns the numeric value of the metric.
§fn running_value(&self) -> NumericEntry
fn running_value(&self) -> NumericEntry
Returns the current aggregated value of the metric over the global step (epoch).
Auto Trait Implementations§
impl Freeze for ExplorationRateMetric
impl RefUnwindSafe for ExplorationRateMetric
impl Send for ExplorationRateMetric
impl Sync for ExplorationRateMetric
impl Unpin for ExplorationRateMetric
impl UnwindSafe for ExplorationRateMetric
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
§impl<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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