Skip to content

Commit

Permalink
updating
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Bloom authored and Josh Bloom committed Apr 26, 2024
1 parent 011bfe1 commit 648f987
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gsp_rl/src/actors/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ def build_RDDPG_gsp(self):
'output_size': 1,
'lr': self.lr
}
print('[INPUT]: ', lstm_nn_args['input_size'])
print('[LSTM OUTPUT]', lstm_nn_args['output_size'])
print('[DDPG INPUT]', actor_nn_args['input_size'])
print('[DDPG OUTPUT]', actor_nn_args['output_size'])
# print('[INPUT]: ', lstm_nn_args['input_size'])
# print('[LSTM OUTPUT]', lstm_nn_args['output_size'])
# print('[DDPG INPUT]', actor_nn_args['input_size'])
# print('[DDPG OUTPUT]', actor_nn_args['output_size'])
return self.make_RDDPG_networks(lstm_nn_args, actor_nn_args, critic_nn_args)

def update_network_parameters(self, tau = None):
Expand Down

0 comments on commit 648f987

Please sign in to comment.