|
|
|
|
|
by in-silico
74 days ago
|
|
> The bellman equations (exactly as written above) are not found in ML libraries.
This is because they work assuming you know a model of the data. Most real world RL is model-free RL. Q-learning (the usual application of the Bellman equation) is generally model-free. It is also commonly found in reinforcement learning libraries. |
|