Trait renforce::trainer::BatchTrainer [] [src]

pub trait BatchTrainer<S: Space, A: Space, T: Agent<S, A>> {
    fn train(&mut self, agent: &mut T, transitions: Vec<Transition<S, A>>);
}

Represents a way to train an agent from a set of transitions

Required Methods

Trains agent based on the observed transitions

Implementors