How to check the weight and bias which taked by getLearnableParameters?

1 view (last 30 days)
% when I check the weight and bias use Engineering computer I get wrong anser
% I want to find the weight and bias of my agent
% I use the example "Train Reinforcement Learning Policy Using Custom Training Loop" and "getLearnableParameters(actor)"

Answers (1)

Emmanouil Tzorakoleftherakis
Can you provide some more details? What does 'wrong answer' mean? How do you know the weights you are seeing are not correct? Are you getting an error?
In any case, looking at your code I suspect that you are using the initial 'actor' variable as argument to 'getLearnableParameters'. After you complete training, you need to extract the updated actor first as shown on this doc page.
actor = getActor(agent);
params = getLearnableParameters(actor);

Community Treasure Hunt

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

Start Hunting!