Struct rsrl::Episode [] [src]

pub struct Episode {
    pub steps: u64,
    pub reward: f64,
}

Container for episodic statistics.

Fields

The number of steps taken to reach the terminal state.

The total accumulated reward over the episode.

Trait Implementations

impl Debug for Episode
[src]

[src]

Formats the value using the given formatter.

impl KV for Episode
[src]

[src]

Serialize self into Serializer Read more