Closed josyulakrishna closed 2 years ago
@josyulakrishna Hi, there is an available demo for QMIX in a past version of ElegantRL, https://github.com/AI4Finance-Foundation/ElegantRL/commit/02dd28aa25fce9db2a663dfa5d3052551bd83561.
git checkout 02dd28
python3 elegantrl/Demo_SMAC.py --config=qmix --env-config=sc2 with env_args.map_name=corridor
Thanks for your participation :) For MAPPO, our team will deliver it as soon as possible.
@shixun404 thank you very much, i will use this right away, can i use QMIX for continuous action spaces?
@josyulakrishna No problem. This QMIX demo is for discrete action space. For continuous action space, you can use MADDPG or MAPPO. I thought there was a MADDPG demo before. I will go to check it :)
Thank you @shixun404 ! My application is on continuous action spaces, if the maddpg demo is available too that'd be great, apologies for too many requests haha..
@josyulakrishna Take it easy :) This is a MADDPG demo https://github.com/shixun404/MADDPG_Demo. Thanks for your interest in ElegantRL.
Haha thank you again @shixun404 ! :)
@josyulakrishna You're welcome! Thanks for your support of ElegantRL.
Hi I want to use this library for Multiagent RL, in
AgentMAPPO.py
file there are two undefined referencesfrom elegantrl.agents.net import ActorMAPPO, CriticMAPPO
ActorMAPPO
andCriticMAPPO
how can I fix can this?