Created
September 18, 2018 03:01
-
-
Save MikeShi42/3c270ce2d13f2709ef2d5983492a1693 to your computer and use it in GitHub Desktop.
CartPole Main.py Checkpoint 2
This file contains 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
import gym | |
import numpy as np | |
env = gym.make('CartPole-v1') | |
def play(env, policy): | |
observation = env.reset() | |
done = False | |
score = 0 | |
observations = [] | |
for _ in range(5000): | |
observations += [observation.tolist()] # Record the observations for normalization and replay | |
if done: # If the simulation was over last iteration, exit loop | |
break | |
# Pick an action according to the policy matrix | |
outcome = np.dot(policy, observation) | |
action = 1 if outcome > 0 else 0 | |
# Make the action, record reward | |
observation, reward, done, info = env.step(action) | |
score += reward | |
return score, observations | |
max = (0, [], []) | |
for _ in range(10): | |
policy = np.random.rand(1,4) | |
score, observations = play(env, policy) | |
if score > max[0]: | |
max = (score, observations, policy) | |
print('Max Score', max[0]) | |
from flask import Flask | |
import json | |
app = Flask(__name__, static_folder='.') | |
@app.route("/data") | |
def data(): | |
return json.dumps(max[1]) | |
@app.route('/') | |
def root(): | |
return app.send_static_file('./index.html') | |
app.run(host='0.0.0.0', port='3000') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment