How to save multiple trained RL Agents?
    2 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
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
0 Kommentare
Antworten (1)
  Emmanouil Tzorakoleftherakis
    
 am 27 Feb. 2023
        
      Bearbeitet: Emmanouil Tzorakoleftherakis
    
 am 27 Feb. 2023
  
      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')
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

