pytorch-DRL
pytorch-DRL copied to clipboard
PyTorch implementations of various Deep Reinforcement Learning (DRL) algorithms for both single agent and multi-agent.
In the ACKTR.pg, a KFACOptimizer is imported. But no source file is found
A little confused about your implementation of MAA2C. I don't think the input of the actor network is simply the ``joint state" of the agents. According to [1] the critic's...
In your implementation of Critic, you feed the network of the observation and action and output 1-dim value. Can I make the inference that It is Q(s,a) ? But the...
https://github.com/ChenglongChen/pytorch-madrl/blob/44b8f082ffb054c6dabead8971b66a7be4c1f9ff/A2C.py#L56 should add one more line: self.critic.cuda(). Also could you provide some example for running the multi-agent case? Thanks!