You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Basic-Guide.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@ This guide will show you how to use a pretrained model in an example Unity envir
5
5
If you are not familiar with the [Unity Engine](https://unity3d.com/unity),
6
6
we highly recommend the [Roll-a-ball tutorial](https://unity3d.com/learn/tutorials/s/roll-ball-tutorial) to learn all the basic concepts of Unity.
7
7
8
-
## Setting up ML-Agents within Unity
8
+
## Setting up the ML-Agents Toolkit within Unity
9
9
10
-
In order to use ML-Agents within Unity, you need to change some Unity settings first. Also [TensorFlowSharp plugin](https://s3.amazonaws.com/unity-ml-agents/0.4/TFSharpPlugin.unitypackage) is needed for you to use pretrained model within Unity, which is based on the [TensorFlowSharp repo](https://github.com/migueldeicaza/TensorFlowSharp).
10
+
In order to use the ML-Agents toolkit within Unity, you need to change some Unity settings first. Also [TensorFlowSharp plugin](https://s3.amazonaws.com/unity-ml-agents/0.4/TFSharpPlugin.unitypackage) is needed for you to use pretrained model within Unity, which is based on the [TensorFlowSharp repo](https://github.com/migueldeicaza/TensorFlowSharp).
11
11
12
12
1. Launch Unity
13
13
2. On the Projects dialog, choose the **Open** option at the top of the window.
14
-
3. Using the file dialog that opens, locate the `unity-environment` folder within the ML-Agents project and click **Open**.
14
+
3. Using the file dialog that opens, locate the `unity-environment` folder within the the ML-Agents toolkit project and click **Open**.
15
15
4. Go to **Edit** > **Project Settings** > **Player**
16
16
5. For **each** of the platforms you target
17
17
(**PC, Mac and Linux Standalone**, **iOS** or **Android**):
@@ -67,7 +67,7 @@ object.
67
67
68
68
### Training the environment
69
69
1. Open a command or terminal window.
70
-
2. Nagivate to the folder where you installed ML-Agents.
70
+
2. Nagivate to the folder where you installed the ML-Agents toolkit.
71
71
3. Change to the `python` directory.
72
72
4. Run `python3 learn.py --run-id=<run-identifier> --train`
73
73
Where:
@@ -99,7 +99,7 @@ to the **Graph Model** placeholder in the **Ball3DBrain** inspector window.
99
99
100
100
## Next Steps
101
101
102
-
* For more information on ML-Agents, in addition to helpful background, check out the [ML-Agents Overview](ML-Agents-Overview.md) page.
102
+
* For more information on the ML-Agents toolkit, in addition to helpful background, check out the [ML-Agents Toolkit Overview](ML-Agents-Overview.md) page.
103
103
* For a more detailed walk-through of our 3D Balance Ball environment, check out the [Getting Started](Getting-Started-with-Balance-Ball.md) page.
104
104
* For a "Hello World" introduction to creating your own learning environment, check out the [Making a New Learning Environment](Learning-Environment-Create-New.md) page.
105
105
* For a series of Youtube video tutorials, checkout the [Machine Learning Agents PlayList](https://www.youtube.com/playlist?list=PLX2vGYjWbI0R08eWQkO7nQkGiicHAX7IX) page.
Copy file name to clipboardExpand all lines: docs/FAQ.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ If you haven't switched your scripting runtime version from .NET 3.5 to .NET 4.6
9
9
error CS1061: Type `System.Text.StringBuilder' does not contain a definition for `Clear' and no extension method `Clear' of type `System.Text.StringBuilder' could be found. Are you missing an assembly reference?
10
10
```
11
11
12
-
This is because .NET 3.5 doesn't support method Clear() for StringBuilder, refer to [Setting Up ML-Agents Within Unity](Installation.md#setting-up-ml-agent-within-unity) for solution.
12
+
This is because .NET 3.5 doesn't support method Clear() for StringBuilder, refer to [Setting Up The ML-Agents Toolkit Within Unity](Installation.md#setting-up-ml-agent-within-unity) for solution.
13
13
14
14
### TensorFlowSharp flag not turned on.
15
15
@@ -19,7 +19,7 @@ If you have already imported the TensorFlowSharp plugin, but havn't set ENABLE_T
19
19
You need to install and enable the TensorFlowSharp plugin in order to use the internal brain.
20
20
```
21
21
22
-
This error message occurs because the TensorFlowSharp plugin won't be usage without the ENABLE_TENSORFLOW flag, refer to [Setting Up ML-Agents Within Unity](Installation.md#setting-up-ml-agent-within-unity) for solution.
22
+
This error message occurs because the TensorFlowSharp plugin won't be usage without the ENABLE_TENSORFLOW flag, refer to [Setting Up The ML-Agents Toolkit Within Unity](Installation.md#setting-up-ml-agent-within-unity) for solution.
0 commit comments