How to simulate saved agents?
Mostrar comentarios más antiguos
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?
Respuestas (1)
Emmanouil Tzorakoleftherakis
el 23 de Feb. de 2021
Hello,
load Agent1.mat
xpr = sim(env,Agent1,simOpts)
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!