Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use tensorflow.Estimator for reinforcement learning

The tensorflow.Estimator seems to gear toward supervised learning but seems to difficult to adopt for other task even if only small changes are needed for the model or training. For example, in reinforcement learning, I would need to feed a reward value which is not part of the features.

like image 468
teddy Avatar asked Oct 29 '22 16:10

teddy


1 Answers

Estimators were meant for good-old supervised learning. So, adopting them to reinforcement learning will likely feel awkward. Here is an RL library that might be useful: https://github.com/tensorflow/agents.

like image 77
iga Avatar answered Jan 02 '23 20:01

iga