How to extract neural network of reinforcement learning agent?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Yihao Wan
am 4 Mär. 2021
Bearbeitet: Emmanouil Tzorakoleftherakis
am 11 Mär. 2021
Is there a way to get the neural network of trained reinforcement learning agent?
0 Kommentare
Akzeptierte Antwort
Emmanouil Tzorakoleftherakis
am 5 Mär. 2021
For critics:
criticNet = getModel(getCritic(trained_agent))
For actors
actorNet = getModel(getActor(trained_agent))
Note that you can use this regardless of whether the agent is trained or not.
Hope this helps
5 Kommentare
Emmanouil Tzorakoleftherakis
am 5 Mär. 2021
Bearbeitet: Emmanouil Tzorakoleftherakis
am 11 Mär. 2021
What I mentioned above should work then. Use the DL blocks or ML Function block to bring the trained network into Simulink, and the plain C codegen feature I mentioned in my other answer to deploy. Plain C code generation shipped in R2021a.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning with Simulink finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!