From febc24f1262da3b704df6677c0ee408006bb1780 Mon Sep 17 00:00:00 2001 From: Vincent Gao Date: Wed, 29 Aug 2018 14:46:01 -0700 Subject: [PATCH 1/4] improve the migration doc --- docs/Migrating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Migrating.md b/docs/Migrating.md index cd56465e77..bb466468dd 100644 --- a/docs/Migrating.md +++ b/docs/Migrating.md @@ -14,7 +14,7 @@ * Discrete Actions now have branches. You can now specify concurrent discrete actions. You will need to update the Brain Parameters in the Brain Inspector - in all your environments. + in all your environments that uses discrete actions. Refer to the [discrete action documentation](Learning-Environment-Design-Agents.md#discrete-action-space) for more information. ### Python API From e1008fc367a9f6b2d40fd5e4e43e6966f0581644 Mon Sep 17 00:00:00 2001 From: Vincent Gao Date: Wed, 29 Aug 2018 14:47:40 -0700 Subject: [PATCH 2/4] fix typo --- docs/Migrating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Migrating.md b/docs/Migrating.md index bb466468dd..90bff2fb66 100644 --- a/docs/Migrating.md +++ b/docs/Migrating.md @@ -5,7 +5,7 @@ ### Important * The Unity project `unity-environment` has been renamed `MLAgentsSDK`. -* The `python` folder has been renamed to `ml-agents`. It not contains two +* The `python` folder has been renamed to `ml-agents`. It now contains two packages, `mlagents.env` and `mlagents.trainers`. `mlagents.env` can be used to interact directly with a Unity environment, while `mlagents.trainers` contains the classes for training agents. From 9180460964be3c5f0fc4974efb18be5756f16fce Mon Sep 17 00:00:00 2001 From: Vincent Gao Date: Wed, 29 Aug 2018 18:16:58 -0700 Subject: [PATCH 3/4] resolved all the issues --- docs/Migrating.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Migrating.md b/docs/Migrating.md index 90bff2fb66..454f8cc329 100644 --- a/docs/Migrating.md +++ b/docs/Migrating.md @@ -12,9 +12,9 @@ ### Unity API -* Discrete Actions now have branches. You can now specify concurrent discrete +* Discrete Actions now have [branches](https://arxiv.org/abs/1711.08946). You can now specify concurrent discrete actions. You will need to update the Brain Parameters in the Brain Inspector - in all your environments that uses discrete actions. Refer to the [discrete action documentation](Learning-Environment-Design-Agents.md#discrete-action-space) for more information. + in all your environments that use discrete actions. Refer to the [discrete action documentation](Learning-Environment-Design-Agents.md#discrete-action-space) for more information. ### Python API From 8c1524e97e2dc407dfed8d9d6eac2e4866c0692e Mon Sep 17 00:00:00 2001 From: Vincent Gao Date: Wed, 29 Aug 2018 18:25:21 -0700 Subject: [PATCH 4/4] resolve the comment --- docs/Migrating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Migrating.md b/docs/Migrating.md index 454f8cc329..747ce60ec9 100644 --- a/docs/Migrating.md +++ b/docs/Migrating.md @@ -12,7 +12,7 @@ ### Unity API -* Discrete Actions now have [branches](https://arxiv.org/abs/1711.08946). You can now specify concurrent discrete +* Discrete Actions now use [branches](https://arxiv.org/abs/1711.08946). You can now specify concurrent discrete actions. You will need to update the Brain Parameters in the Brain Inspector in all your environments that use discrete actions. Refer to the [discrete action documentation](Learning-Environment-Design-Agents.md#discrete-action-space) for more information.