How to check the Q(s,a) value from a trained DQN agent?
4 ビュー (過去 30 日間)
古いコメントを表示
I have trained a DQN agent using the new Reinforcement Learning toolbox. And I wonder if it's possible to check the Q value of a certain (s,a) pair?
0 件のコメント
回答 (1 件)
Kajal Bansala
2021 年 3 月 10 日
Hello Yichen,
You can extract the 'rlQValueRepresentation' critic from the 'rlDQNAgent' using 'getCritic()'. From there you can use 'getValue()' to get the value for the observation. Here are my documentation page references:
getCritic: https://www.mathworks.com/help/reinforcement-learning/ref/rl.agent.rlqagent.getcritic.html
rlQValueRepresentation: https://www.mathworks.com/help/reinforcement-learning/ref/rlqvaluerepresentation.html
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!