Why my RL training abruptly stopping before the total EpisodeCount?
1 回表示 (過去 30 日間)
古いコメントを表示
I have made a custom RL environment based on the answer provided in (full description of the env described there along with the commented attached code)--
https://in.mathworks.com/matlabcentral/answers/619138-custom-rl-environment-creation?s_tid=srchtitle
But its training is stopping at 500th episode before the total episode count (5000).
I am sharing both the codes (env and main training). Don't bother about hyperparameters.
I am unable to understand what I am doing wrong.
I have implemented another more complex environment based on this logic that stops at the 500th episode even though I am fixing training for 5000.
Any suggestion?
Thanks.
0 件のコメント
採用された回答
Emmanouil Tzorakoleftherakis
2021 年 1 月 28 日
編集済み: Emmanouil Tzorakoleftherakis
2021 年 1 月 28 日
Please take a look at this doc page. While you are selecting "episodecount" as the termination criterion, you don't set the stopping value. The default is "500" which explains why training stops after 500 episodes.
The "MaxEpisodes" field is checked after the "StopTrainingCriteria" one.
Hope that helps.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Training and Simulation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!