Enhancing Twin Delayed Deep Deterministic Policy Gradient with Cross-Entropy Method

Hieu Trung Nguyen, Khang Tran and Ngoc Hoang Luong Setup $ git clone https://github.com/junhill-2000/eTD3.git $ cd eTD3 The following packages are needed: tianshou==0.4.4 gym==0.19.0 mujoco_py==2.0.2.13 (need to install mujoco200 from http://www.mujoco.org/) Usage train agent with eTD3 python3 mujoco_td3_mod_v3.py –task [environment_name] –seed [seed] –logdir [log_directory] Visualize (comming soon) Acknowledgement Our source code is    

Read more

Inspects Python source files and provides information about type and location of classes, methods etc

About Prospector is a tool to analyse Python code and output information about errors, potential problems, convention violations and complexity. It brings together the functionality of other Python analysis tools such as Pylint, pep8, and McCabe complexity. See the Supported Tools documentation section for a complete list. The primary aim of Prospector is to be useful ‘out of the box’. A common complaint of other Python analysis tools is that it takes a long time to filter    

Read more