jsphon / reinforcement_learning

Python Package For Reinforcement Learning
0 stars 0 forks source link

Learner.learn_episode / learn_episodes #19

Closed jsphon closed 7 years ago

jsphon commented 7 years ago

We shouldn't really have two functions.

Instead, we should have a learn function that accepts an object that implements the get_training_arrays interface, where get_training_arrays returns X, y training data.

jsphon commented 7 years ago

Created the Experience interface class.