You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
jiejiuzhang1579
changed the title
Could you please give us a ".yaml" file for creating an certain virtual python environment to run this code ?
in DDQN_torch, line 146, q_next,q_eval4next = self.forward(...), it need two retrn vlues in forward() , but the forward() return only a q.
Jun 5, 2024
jiejiuzhang1579
changed the title
in DDQN_torch, line 146, q_next,q_eval4next = self.forward(...), it need two retrn vlues in forward() , but the forward() return only a q.
in DDQN_torch, line 146, q_next,q_eval4next = self.forward(...), it need two return values in forward() , but the forward() return only a q.
Jun 5, 2024
I think the value of the q_eval4next need a new line of code to get, could you please give a tip how to modify it ?
q_next, q_eval4next = self.forward(batch_memory[:, -self.n_features:], lstm_batch_memory[:, :, self.n_lstm_state:])
The text was updated successfully, but these errors were encountered: