This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ A clean implementation of DDPG algorithm | |
| Continuous control with deep reinforcement learning (Lillicrap et al., 2015) | |
| """ | |
| import os | |
| os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' | |
| import gym | |
| import numpy as np | |
| import tensorflow as tf |