November 2018
Beginner
246 pages
5h 23m
English
Now we need to implement the code that will describe the agent's behavior and the ML-Agent's Academy. The agent's behavior script describes the way the agents performs actions in the simulation, the reward it receives, and the way we reset it to start a new simulation:
using MLAgents;public class SphereAcademy : Academy { }
This will create a default training academy for our agent.
using System.Collections.Generic; using UnityEngine; using MLAgents; public class SphereAgent ...
Read now
Unlock full access