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
from __future__ import print_function | |
import numpy as np | |
import gym | |
from gym.spaces import Discrete, Box | |
# DQN for Reinforcement Learning | |
# by Qin Yongliang | |
# 2017 01 11 | |
def continuous_actions(env): |
NewerOlder