How to simulate saved agents?
显示 更早的评论
trainOpts.SaveAgentCriteria = "EpisodeCount";
trainOpts.SaveAgentValue = 1;
trainOpts.SaveAgentDirectory = pwd + "\Agents";
trainingStats = train(agent,env,trainOpts);
simOpts = rlSimulationOptions(...
'MaxSteps',1000,...
'NumSimulations',3);
load Agents/Agent1.mat
xpr = sim(env,Agent1,simOpts)
I have saved agents in "Agents" folder as shown. How do I simulate these agents? Last two lines in the code above are incorrect. What is the correct way?
回答(1 个)
Emmanouil Tzorakoleftherakis
2021-2-23
Hello,
load Agent1.mat
xpr = sim(env,Agent1,simOpts)
类别
在 帮助中心 和 File Exchange 中查找有关 Reinforcement Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!