How to extract neural network of reinforcement learning agent?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yihao Wan
le 4 Mar 2021
Modifié(e) : Emmanouil Tzorakoleftherakis
le 11 Mar 2021
Is there a way to get the neural network of trained reinforcement learning agent?
0 commentaires
Réponse acceptée
Emmanouil Tzorakoleftherakis
le 5 Mar 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 commentaires
Emmanouil Tzorakoleftherakis
le 5 Mar 2021
Modifié(e) : Emmanouil Tzorakoleftherakis
le 11 Mar 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.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Deep Learning with Simulink dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!