How to run the simulink model when implementing custom RL training?
1 回表示 (過去 30 日間)
古いコメントを表示
Yihao Wan
2023 年 5 月 25 日
コメント済み: Emmanouil Tzorakoleftherakis
2023 年 5 月 25 日
Hello, I am developing a custom training of RL DQN agent based on the link, however, how should I adapt it to the simulink environment?
Especially for the code below, when applying an action to the environment, the step is not applicable for a simulink model. How should I solve this issue? Thanks in advance.
% Apply the action to the environment
% and obtain the resulting observation and reward.
[nextObs,reward,isdone] = step(env,action{1});
0 件のコメント
採用された回答
Emmanouil Tzorakoleftherakis
2023 年 5 月 25 日
The way to do it would be to use runEpisode
2 件のコメント
Emmanouil Tzorakoleftherakis
2023 年 5 月 25 日
The example you are showing is model-based RL, it's different from what you mentioned at the beginning.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!