From 394678f8e8d89a67b93897cc6a67ad14658beb66 Mon Sep 17 00:00:00 2001 From: Arthur Juliani Date: Sun, 18 Mar 2018 16:52:14 -0700 Subject: [PATCH 1/3] Corrected Wall Jump description (#501) * Corrected Wall Jump description --- docs/Learning-Environment-Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Learning-Environment-Examples.md b/docs/Learning-Environment-Examples.md index 8d0b6187e6..ecb55318eb 100644 --- a/docs/Learning-Environment-Examples.md +++ b/docs/Learning-Environment-Examples.md @@ -109,7 +109,7 @@ If you would like to contribute environments, please see our * -0.0005 for every step. * +1.0 if the agent touches the goal. * -1.0 if the agent falls off the platform. -* Brains: One brain with the following observation/action space. +* Brains: Two brains, each with the following observation/action space. * Vector Observation space: (Continuous) 16 variables corresponding to position and velocities of agent, block, and goal, plus the height of the wall. * Vector Action space: (Discrete) Size of 74, corresponding to 14 raycasts each detecting 4 possible objects. plus the global position of the agent and whether or not the agent is grounded. * Visual Observations: None. From d22c62b0b374a88fb417ae4bce52cd653581b32b Mon Sep 17 00:00:00 2001 From: Sterling Crispin Date: Sun, 18 Mar 2018 19:29:13 -0600 Subject: [PATCH 2/3] Update Installation-Windows.md edit for tensorflow 1.4 newer versions require cuda 9 which is unsupported by this repo https://github.com/Unity-Technologies/ml-agents/issues/313 --- docs/Installation-Windows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Installation-Windows.md b/docs/Installation-Windows.md index 148575c913..83a3d10490 100644 --- a/docs/Installation-Windows.md +++ b/docs/Installation-Windows.md @@ -166,10 +166,10 @@ Make sure to replace the relevant directory location with the one you have insta

### Install TensorFlow GPU -Next, install `tensorflow-gpu` using `pip`. In an Anaconda Prompt with the Conda environment ml-agents activated, type in the following command _(make sure you are connected to the internet)_: +Next, install `tensorflow-gpu` using `pip`. You'll need version 1.4.0 as newer version require CUDA 9 which is not yet supported. In an Anaconda Prompt with the Conda environment ml-agents activated, type in the following command _(make sure you are connected to the internet)_: ``` -pip install tensorflow-gpu +pip install tensorflow-gpu==1.4.0 ``` Lastly, you should test to see if everything installed properly and that TensorFlow can identify your GPU. In the same Anaconda Prompt, type in the following command: From b6816dba5d6d544c145e4da3033fea388fe64f4c Mon Sep 17 00:00:00 2001 From: Sterling Crispin Date: Tue, 10 Apr 2018 11:01:18 -0600 Subject: [PATCH 3/3] Update Installation-Windows.md --- docs/Installation-Windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Installation-Windows.md b/docs/Installation-Windows.md index 83a3d10490..6d28058db1 100644 --- a/docs/Installation-Windows.md +++ b/docs/Installation-Windows.md @@ -166,7 +166,7 @@ Make sure to replace the relevant directory location with the one you have insta

### Install TensorFlow GPU -Next, install `tensorflow-gpu` using `pip`. You'll need version 1.4.0 as newer version require CUDA 9 which is not yet supported. In an Anaconda Prompt with the Conda environment ml-agents activated, type in the following command _(make sure you are connected to the internet)_: +Next, install `tensorflow-gpu` using `pip`. You'll need version 1.4.0 as newer versions require CUDA 9 which is not yet supported. In an Anaconda Prompt with the Conda environment ml-agents activated, type in the following command _(make sure you are connected to the internet)_: ``` pip install tensorflow-gpu==1.4.0