starry-sky6688 / MARL-Algorithms

Implementations of IQL, QMIX, VDN, COMA, QTRAN, MAVEN, CommNet, DyMA-CL, and G2ANet on SMAC, the decentralised micromanagement scenario of StarCraft II
1.47k stars 284 forks source link

Batch size #33

Closed trinayan closed 4 years ago

trinayan commented 4 years ago

Hi,

What is a good way to change the batch size for better GPU utilization?. Is it the n_episodes parameter?. I am using reinforce+g2anet with 3m map. Thanks

starry-sky6688 commented 4 years ago

Hi,n_episodes is the right parameter to change batch size for reinforce+g2anet, since reinforce+g2anet is on-policy algorithm, it doesn't require replay buffer.

trinayan commented 4 years ago

Thanks for the information