It is often more intuitive to simply demonstrate the behavior we want an agent to perform, rather than attempting to have it learn via trial-and-error methods. Consider our running example of training a medic NPC. Instead of indirectly training a medic with the help of a reward function, we can give the medic real world examples of observations from the game and actions from a game controller to guide the medic's behavior. Imitation Learning uses pairs of observations and actions from from a demonstration to learn a policy. Video Link.
It is possible to record demonstrations of agent behavior from the Unity Editor, and save them as assets. These demonstrations contain information on the observations, actions, and rewards for a given agent during the recording session. They can be managed from the Editor, as well as used for training with Offline Behavioral Cloning (see below).
In order to record demonstrations from an agent, add the Demonstration Recorder
component to a GameObject in the scene which contains an Agent component.
Once added, it is possible to name the demonstration that will be recorded
from the agent.
When Record is checked, a demonstration will be created whenever the scene
is played from the Editor. Depending on the complexity of the task, anywhere
from a few minutes or a few hours of demonstration data may be necessary to
be useful for imitation learning. When you have recorded enough data, end
the Editor play session, and a .demo file will be created in the
Assets/Demonstrations folder. This file contains the demonstrations.
Clicking on the file will provide metadata about the demonstration in the
inspector.
There are a variety of possible imitation learning algorithms which can be used, the simplest one of them is Behavioral Cloning. It works by collecting demonstrations from a teacher, and then simply uses them to directly learn a policy, in the same way the supervised learning for image classification or other traditional Machine Learning tasks work.
With offline behavioral cloning, we can use demonstrations (.demo files)
generated using the Demonstration Recorder as the dataset used to train a behavior.
- Choose an agent you would like to learn to imitate some set of demonstrations.
- Record a set of demonstration using the
Demonstration Recorder(see above). For illustrative purposes we will refer to this file asAgentRecording.demo. - Build the scene, assigning the agent a Learning Brain, and set the Brain to Control in the Broadcast Hub. For more information on Brains, see here.
- Open the
config/offline_bc_config.yamlfile. - Modify the
demo_pathparameter in the file to reference the path to the demonstration file recorded in step 2. In our case this is:./UnitySDK/Assets/Demonstrations/AgentRecording.demo - Launch
mlagent-learn, providing./config/offline_bc_config.yamlas the config parameter, and include the--run-idand--trainas usual. Provide your environment as the--envparameter if it has been compiled as standalone, or omit to train in the editor. - (Optional) Observe training performance using TensorBoard.
This will use the demonstration file to train a neural network driven agent to directly imitate the actions provided in the demonstration. The environment will launch and be used for evaluating the agent's performance during training.
It is also possible to provide demonstrations in realtime during training, without pre-recording a demonstration file. The steps to do this are as follows:
- First create two Brains, one which will be the "Teacher," and the other which will be the "Student." We will assume that the names of the Brain Assets are "Teacher" and "Student" respectively.
- The "Teacher" Brain must be a Player Brain. You must properly configure the inputs to map to the corresponding actions.
- The "Student" Brain must be a Learning Brain.
- The Brain Parameters of both the "Teacher" and "Student" Brains must be compatible with the agent.
- Drag both the "Teacher" and "Student" Brain into the Academy's
Broadcast Huband check theControlcheckbox on the "Student" Brain. - Link the Brains to the desired Agents (one Agent as the teacher and at least one Agent as a student).
- In
config/online_bc_config.yaml, add an entry for the "Student" Brain. Set thetrainerparameter of this entry toonline_bc, and thebrain_to_imitateparameter to the name of the teacher Brain: "Teacher". Additionally, setbatches_per_epoch, which controls how much training to do each moment. Increase themax_stepsoption if you'd like to keep training the Agents for a longer period of time. - Launch the training process with
mlagents-learn config/online_bc_config.yaml --train --slow, and press the▶️ button in Unity when the message "Start training by pressing the Play button in the Unity Editor" is displayed on the screen - From the Unity window, control the Agent with the Teacher Brain by providing "teacher demonstrations" of the behavior you would like to see.
- Watch as the Agent(s) with the student Brain attached begin to behave similarly to the demonstrations.
- Once the Student Agents are exhibiting the desired behavior, end the training
process with
CTL+Cfrom the command line. - Move the resulting
*.nnfile into theTFModelssubdirectory of the Assets folder (or a subdirectory within Assets of your choosing) , and use withLearningBrain.
BC Teacher Helper
We provide a convenience utility, BC Teacher Helper component that you can add
to the Teacher Agent.
This utility enables you to use keyboard shortcuts to do the following:
-
To start and stop recording experiences. This is useful in case you'd like to interact with the game but not have the agents learn from these interactions. The default command to toggle this is to press
Ron the keyboard. -
Reset the training buffer. This enables you to instruct the agents to forget their buffer of recent experiences. This is useful if you'd like to get them to quickly learn a new behavior. The default command to reset the buffer is to press
Con the keyboard.


