How to save multiple trained RL Agents?
이전 댓글 표시
I have followed this tutorial- Train Multiple Agents to train 3 RL agents but there is no mention of how to save the trained agents in separate or a single .mat file. So do I save the agents using the same way we do for a single agent-
save("AgentX.mat","agent1") separately for all 3 or is there a different way to achieve this.
Thanking You
Apoorv Pandey
apoorv.pandey.19e@iitram.ac.in
답변 (1개)
Emmanouil Tzorakoleftherakis
2023년 2월 27일
편집: Emmanouil Tzorakoleftherakis
2023년 2월 27일
You can really do whatever makes sense to you. Either save them separately or in the same mat file as follows:
save('Agents.mat','agent1','agent2','agent3')
카테고리
도움말 센터 및 File Exchange에서 Reinforcement Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!