How to extract neural network of reinforcement learning agent?

6 views (last 30 days)
Is there a way to get the neural network of trained reinforcement learning agent?

Accepted Answer

Emmanouil Tzorakoleftherakis
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 Comments
Emmanouil Tzorakoleftherakis
Edited: Emmanouil Tzorakoleftherakis on 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.

Sign in to comment.

More Answers (0)

Products


Release

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!