actor_critic icon indicating copy to clipboard operation
actor_critic copied to clipboard

This is the code for "Actor Critic Algorithms" by Siraj Raval on Youtube

Results 1 actor_critic issues
Sort by recently updated
recently updated
newest added

Hi Siraj, great coding ever! However, I wonder the code in line 145 `actor_target_weights = self.target_critic_model.get_weights()` should it be `actor_target_weights = self.target_actor_model.get_weights()` ? And in line 153, would it be...