Why my RL training abruptly stopping before the total EpisodeCount?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
laha_M
el 28 de En. de 2021
Comentada: laha_M
el 30 de En. de 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 comentarios
Respuesta aceptada
Emmanouil Tzorakoleftherakis
el 28 de En. de 2021
Editada: Emmanouil Tzorakoleftherakis
el 28 de En. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Training and Simulation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!