From ff9f62742cade15c761fa5123cff6af5d2d2eba7 Mon Sep 17 00:00:00 2001 From: sseidl88 Date: Sat, 30 Sep 2017 01:55:22 -0500 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4e41d80..dc6a4e1 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,19 @@ # OpenAI_Game_Bot_Live_stream -##Overview +## Overview This is the code for the "How to Install OpenAI's Universe and Make a Game Bot" live session by Siraj Raval on [Youtube](https://www.youtube.com/watch?v=XI-I9i_GzIw). The bot is for the Coaster Racer flash game and determines the answer to 2 questions -- should I turn, and which way should I turn? It answers the first by checking if it's been receiving a reward for a certain interval (no crashes), and if it has it will turn. It answers the second by randomly picking a turn between left and right. This bot is able to complete the race. So it's a bot that uses reinforcement learning to determine when to turn and each turn is a random direction. -##Dependencies +## Dependencies * Universe- install instructions [here](https://github.com/openai/universe) * random (pip install random) -##Usage +## Usage Run `python demo.py` in terminal to run this code -##Credits +## Credits Credits go to [Mick](https://github.com/mickvanhulst/). I've merely created a wrapper to get people started.