MujocoTestbed of AIRLAB
Note that: pytorch should folllow CUDA version of your GPU (If not, you may not be able to use pytorch-cuda)
first intall mujoco-py in your conda env click this link mujoco-py
git clone https://github.com/AIRLABkhu/MujocoTestbed.git
pip install -r requirements.txt
DDPG,SAC,TD3 is available.
python SAC/main.py --env-name Humanoid-v2 --alpha 0.05
python DDPG/main.py --env-name Huamnoid-v2
python TD3/main.py --env-name Humanoid-v2
First make csv_file
python tools.py --root-dir run/{ENV_NAME}/{Algo}
and make plot
python plotter.py --task {ENV_NAME} --algo {algo1},{algo2},{algo3} (for comparison of algorithms)
Example (I run experiments on two algoritms (sac,ddpg) in Ant-v2) then
python tools.py --root-dir run/Ant-v2/sac
python tools.py --root-dir run/Ant-v2/ddpg
python plotter.py --task Ant-v2 --algo sac,ddpg