philtabor / Youtube-Code-Repository

Repository for most of the code from my YouTube channel
859 stars 479 forks source link

Pendulum TF2 maybe a bug found #29

Closed therealiggs closed 3 years ago

therealiggs commented 3 years ago

Hey.

I've been laucnhing your Pendulum TF2 project, and: it only launched after I've changed lines 23 and 25 of ddpg_tf2.py from self.critic = CriticNetwork(n_actions=n_actions, name='critic') self.target_critic = CriticNetwork(n_actions=n_actions, name='target_critic') to self.critic = CriticNetwork(name='critic') self.target_critic = CriticNetwork(name='target_critic') I believe thats a bug?