8.0 KiB
Basic Guide
This guide will show you how to use a pretrained model in an example Unity environment, and show you how to train the model yourself.
If you are not familiar with the Unity Engine, we highly recommend the Roll-a-ball tutorial to learn all the basic concepts of Unity.
Setting up ML-Agents within Unity
In order to use ML-Agents within Unity, you need to change some Unity settings first. Also TensorFlowSharp plugin is needed for you to use pretrained model within Unity.
- Launch Unity
- On the Projects dialog, choose the Open option at the top of the window.
- Using the file dialog that opens, locate the
unity-environment
folder within the ML-Agents project and click Open. - Go to Edit > Project Settings > Player
- For each of the platforms you target
(PC, Mac and Linux Standalone, iOS or Android):
- Option the Other Settings section.
- Select Scripting Runtime Version to Experimental (.NET 4.6 Equivalent)
- In Scripting Defined Symbols, add the flag
ENABLE_TENSORFLOW
. After typing in the flag name, press Enter.
- Go to File > Save Project
Download the TensorFlowSharp plugin. Then import it into Unity by double clicking the downloaded file. You can check if it was successfully imported by checking the TensorFlow files in the Project window under Assets > ML-Agents > Plugins > Computer.
Note: If you don't see anything under Assets, drag the ml-agents/unity-environment/Assets/ML-Agents
folder under Assets within Project window.
Running a Pre-trained Model
- In the Project window, go to
Assets/ML-Agents/Examples/3DBall
folder and open the3DBall
scene file. - In the Hierarchy window, select the Ball3DBrain child under the Ball3DAcademy GameObject to view its properties in the Inspector window.
- On the Ball3DBrain object's Brain component, change the Brain Type to Internal.
- In the Project window, locate the
Assets/ML-Agents/Examples/3DBall/TFModels
folder. - Drag the
3DBall
model file from theTFModels
folder to the Graph Model field of the Ball3DBrain object's Brain component. - Click the Play button and you will see the platforms balance the balls using the pretrained model.
Building an Example Environment
The first step is to open the Unity scene containing the 3D Balance Ball environment:
- Launch Unity.
- On the Projects dialog, choose the Open option at the top of the window.
- Using the file dialog that opens, locate the
unity-environment
folder within the ML-Agents project and click Open. - In the Project window, navigate to the folder
Assets/ML-Agents/Examples/3DBall/
. - Double-click the
3DBall
file to load the scene containing the Balance Ball environment.
Since we are going to build this environment to conduct training, we need to set the brain used by the agents to External. This allows the agents to communicate with the external training process when making their decisions.
- In the Scene window, click the triangle icon next to the Ball3DAcademy object.
- Select its child object Ball3DBrain.
- In the Inspector window, set Brain Type to External.
Next, we want the set up scene to play correctly when the training process launches our environment executable. This means:
- The environment application runs in the background
- No dialogs require interaction
- The correct scene loads automatically
- Open Player Settings (menu: Edit > Project Settings > Player).
- Under Resolution and Presentation:
- Ensure that Run in Background is Checked.
- Ensure that Display Resolution Dialog is set to Disabled.
- Open the Build Settings window (menu:File > Build Settings).
- Choose your target platform.
- (optional) Select “Development Build” to log debug messages.
- If any scenes are shown in the Scenes in Build list, make sure that the 3DBall Scene is the only one checked. (If the list is empty, than only the current scene is included in the build).
- Click Build:
a. In the File dialog, navigate to the
python
folder in your ML-Agents directory. b. Assign a file name and click Save.
Now that we have a Unity executable containing the simulation environment, we
can perform the training. You can ensure that your environment and the Python
API work as expected, by using the python/Basics
Jupyter notebook introduced in the next section.
Using the Basics Jupyter Notebook
The python/Basics
Jupyter notebook contains a
simple walkthrough of the functionality of the Python
API. It can also serve as a simple test that your environment is configured
correctly. Within Basics
, be sure to set env_name
to the name of the
Unity executable you built earlier.
More information and documentation is provided in the Python API page.
Training the Brain with Reinforcement Learning
- Open a command or terminal window.
- Nagivate to the folder where you installed ML-Agents.
- Change to the python directory.
- Run
python3 learn.py <env_name> --run-id=<run-identifier> --train
Where:
<env_name>
is the name and path to the executable you exported from Unity (without extension)<run-identifier>
is a string used to separate the results of different training runs- And the
--train
tells learn.py to run a training session (rather than inference)
For example, if you are training with a 3DBall executable you exported to the ml-agents/python directory, run:
python3 learn.py 3DBall --run-id=firstRun --train
Note: If you're using Anaconda, don't forget to activate the ml-agents environment first.
If the learn.py runs correctly and starts training, you should see something like this:
You can press Ctrl+C to stop the training, and your trained model will be at ml-agents/python/models/<run-identifier>/<env_name>_<run-identifier>.bytes
, which corresponds to your model's latest checkpoint. You can now embed this trained model into your internal brain by following the steps below, which is similar to the steps described above.
- Move your model file into
unity-environment/Assets/ML-Agents/Examples/3DBall/TFModels/
. - Open the Unity Editor, and select the 3DBall scene as described above.
- Select the Ball3DBrain object from the Scene hierarchy.
- Change the Type of Brain to Internal.
- Drag the
<env_name>_<run-identifier>.bytes
file from the Project window of the Editor to the Graph Model placeholder in the Ball3DBrain inspector window. - Press the Play button at the top of the editor.
Next Steps
- For more information on ML-Agents, in addition to helpful background, check out the ML-Agents Overview page.
- For a more detailed walk-through of our 3D Balance Ball environment, check out the Getting Started page.
- For a "Hello World" introduction to creating your own learning environment, check out the Making a New Learning Environment page.
- For a series of Youtube video tutorials, checkout the Machine Learning Agents PlayList page.