Mix action channels are not supported in DDPG
5 ビュー (過去 30 日間)
古いコメントを表示
My action space is mixed. Except one, all variables are continuous. So, I have defined the action apace as shown in the code below for a DDPG agent. But I get the error as shown in the attached image.
actInfoCont = rlNumericSpec([255 1],"UpperLimit",1,"LowerLimit",0); % (0 to 1 probabilistic mask)
actInfoDIsc = rlFiniteSetSpec([0 3.141592654]);
actInfo = [actInfoCont actInfoDIsc];
0 件のコメント
採用された回答
Ayush Aniket
2024 年 9 月 18 日
編集済み: Ayush Aniket
2024 年 9 月 18 日
Hi Sania,
Currently, Reinforcement Learning Toolbox does not support mixed action spaces. As an alternative you could consider training two agents, one for the continuous action and another for the discrete. Refer to the following MATLAB Answer: https://www.mathworks.com/matlabcentral/answers/2015776-reinforcement-learning-agent-for-mixed-action-space
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!