Skip to content

Instantly share code, notes, and snippets.

View chiphuyen's full-sized avatar
💭
Doing cool stuff

Chip Huyen chiphuyen

💭
Doing cool stuff
View GitHub Profile
""" 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