Struct CumulativeRewardMetric
pub struct CumulativeRewardMetric { /* private fields */ }Expand description
Metric for the cumulative reward of the last completed episode.
Implementations§
§impl CumulativeRewardMetric
impl CumulativeRewardMetric
pub fn new() -> CumulativeRewardMetric
pub fn new() -> CumulativeRewardMetric
Creates a new episode length metric.
Trait Implementations§
§impl Clone for CumulativeRewardMetric
impl Clone for CumulativeRewardMetric
§fn clone(&self) -> CumulativeRewardMetric
fn clone(&self) -> CumulativeRewardMetric
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 CumulativeRewardMetric
impl Default for CumulativeRewardMetric
§fn default() -> CumulativeRewardMetric
fn default() -> CumulativeRewardMetric
Returns the “default value” for a type. Read more
§impl Metric for CumulativeRewardMetric
impl Metric for CumulativeRewardMetric
§type Input = CumulativeRewardInput
type Input = CumulativeRewardInput
The input type of the metric.
§fn update(
&mut self,
item: &CumulativeRewardInput,
_metadata: &MetricMetadata,
) -> SerializedEntry
fn update( &mut self, item: &CumulativeRewardInput, _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 CumulativeRewardMetric
impl Numeric for CumulativeRewardMetric
§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 CumulativeRewardMetric
impl RefUnwindSafe for CumulativeRewardMetric
impl Send for CumulativeRewardMetric
impl Sync for CumulativeRewardMetric
impl Unpin for CumulativeRewardMetric
impl UnwindSafe for CumulativeRewardMetric
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