Why my RL training abruptly stopping before the total EpisodeCount?
1 view (last 30 days)
Show older comments
laha_M
on 28 Jan 2021
Commented: laha_M
on 30 Jan 2021
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 Comments
Accepted Answer
Emmanouil Tzorakoleftherakis
on 28 Jan 2021
Edited: Emmanouil Tzorakoleftherakis
on 28 Jan 2021
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.
More Answers (0)
See Also
Categories
Find more on Training and Simulation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!