Reinforcement Learning Episode Manager

After training has finished, If I close the "Reinforcement Learning Episode Manager" window, how do I reopen it ??

1 件のコメント

Mike Croucher
Mike Croucher 2021 年 9 月 5 日
In MATLAB 2021a and above you can use the inspectTrainingResult function to do this as follows
trainingStats = train(agent,env,trainOpts);
inspectTrainingResult(trainingStats)

サインインしてコメントする。

 採用された回答

Madhav Thakker
Madhav Thakker 2020 年 9 月 15 日

0 投票

Hi Ahmad,
It is not possible to reopen the Episode Manager after closing it. The graphical window is triggered only when you run a function like train. The windows is destroyed once you close it. If you want to access specific training variables like EpisodeReward, TrainingSteps, you can get them in the workspace as output arguments.
Hope this helps.

3 件のコメント

Emmanouil Tzorakoleftherakis
Emmanouil Tzorakoleftherakis 2020 年 9 月 15 日
To add to this answer, starting in R2020b, there is a method you can use to recreate the Episode Manager graph using the output arguments mentioned above
rlPlotTrainingResults(stats)
M.G.
M.G. 2020 年 9 月 16 日
Thanks for the info! any news on when R2020b will roll out ?
Nicolas CRETIN
Nicolas CRETIN 2024 年 5 月 31 日
Hello!
The following line doesn't work for me:
rlPlotTrainingResults(trainingStats)
I get the follwing error:
Unrecognized function or variable
'rlPlotTrainingResults'.
I would prefer using it instead of inspectTrainingResult() function, since I would like to plot it in a live script (and not open it in a new window).
Any Idea, please?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeReinforcement Learning Toolbox についてさらに検索

製品

リリース

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by