Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/tensorlayer/TensorLayer
/ tutorial_Qlearning.py
File
tutorial_Qlearning.py
examples/reinforcement_learning/tutorial_Qlearning.py:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
""
"Q-Table learning algorithm.
2
Non deep learning - TD Learning, Off-Policy, e-Greedy Exploration
3
Q(S, A) <- Q(S, A) + alpha * (R +
lambda
* Q(newS, newA) - Q(S, A))
4
See David Silver RL Tutorial Lecture 5 - Q-Learning
for
more details.
Callers
nothing calls this directly
Calls
4
reset
Method · 0.45
step
Method · 0.45
save
Method · 0.45
load
Method · 0.45
Tested by
no test coverage detected