Handaoui Mohamed

Results 1 comments of Handaoui Mohamed

I think you can implement that by simply saving all the networks of that specific class [not tested], example: ```python def locally_save_policy(self): """Saves the policy""" torch.save(self.nn_local.state_dict(), "Models/{}_local_network.pt".format(self.agent_name)) torch.save(self.nn_target.state_dict(), "Models/{}_target_network.pt".format(self.agent_name)) ```...