Effacer les filtres
Effacer les filtres

How do I solve this error?

1 vue (au cours des 30 derniers jours)
Apoorv Pandey
Apoorv Pandey le 24 Mar 2023
Commenté : Cris LaPierre le 27 Mar 2023
I am getting this error when I try to train a TD3 RL agent.
Thanking You
Apoorv Pandey
  1 commentaire
Emmanouil Tzorakoleftherakis
If you share a reproduction model it would be easier to debug

Connectez-vous pour commenter.

Réponse acceptée

Cris LaPierre
Cris LaPierre le 24 Mar 2023
When defining your rlQValueFunction, include the ActionInputNames and OvservationInputNames name-value pairs.
% Observation path layers
obsPath = [featureInputLayer( ...
prod(obsInfo.Dimension), ...
Name="netObsInput")
fullyConnectedLayer(16)
reluLayer
fullyConnectedLayer(5,Name="obsout")];
% Action path layers
actPath = [featureInputLayer( ...
prod(actInfo.Dimension), ...
Name="netActInput")
fullyConnectedLayer(16)
reluLayer
fullyConnectedLayer(5,Name="actout")];
%<snip>
critic = rlQValueFunction(net,...
obsInfo,actInfo, ...
ObservationInputNames="netObsInput",...
ActionInputNames="netActInput")
  2 commentaires
Apoorv Pandey
Apoorv Pandey le 27 Mar 2023
I have used the exact same code as mentioned in the link and still getting the error. Please help
Cris LaPierre
Cris LaPierre le 27 Mar 2023
Please share your data and your code. You can attach files using the paperclip icon. If it's easier,save your workspace variables to a mat file and attach that.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by