Unity 机器学习代理工具包 (ML-Agents) 是一个开源项目,它使游戏和模拟能够作为训练智能代理的环境。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

5.6 KiB

About ML-Agents package (com.unity.ml-agents)

The ML-Agents package contains the primary C# SDK for the Unity ML-Agents Toolkit.

The package allows you to convert any Unity scene to into a learning environment and train character behaviors using a variety of machine learning algorithms. Additionally, it allows you to embed these trained behaviors back into Unity scenes to control your characters. More specifically, the package provides the following core functionalities:

  • Define Agents: entities, or characters, whose behavior will be learned. Agents are entities that generate observations (through sensors), take actions, and receive rewards from the environment.
  • Define Behaviors: entities that specifiy how an agent should act. Multiple agents can share the same Behavior and a scene may have multiple Behaviors.
  • Record demonstrations of an agent within the Editor. You can use demonstrations to help train a behavior for that agent.
  • Embedding a trained behavior into the scene via the Unity Inference Engine. Embedded behaviors allow you to switch an Agent between learning and inference.

Note that the ML-Agents package does not contain the machine learning algorithms for training behaviors. The ML-Agents package only supports instrumenting a Unity scene, setting it up for training, and then embedding the trained model back into your Unity scene. The machine learning algorithms that orchestrate training are part of the companion Python package.

Note that we also provide an ML-Agents Extensions package (com.unity.ml-agents.extensions) that contains early/experimental features that you may find useful. This package is only available from the ML-Agents GitHub repo.

Package contents

The following table describes the package folder structure:

Location Description
Documentation~ Contains the documentation for the Unity package.
Editor Contains utilities for Editor windows and drawers.
Plugins Contains third-party DLLs.
Runtime Contains core C# APIs for integrating ML-Agents into your Unity scene.
Tests Contains the unit tests for the package.

Installation

To install this ML-Agents package, follow the instructions in the Package Manager documentation.

To install the companion Python package to enable training behaviors, follow the installation instructions on our GitHub repository.

Requirements

This version of the Unity ML-Agents package is compatible with the following versions of the Unity Editor:

  • 2018.4 and later

Known Limitations

Training

Training is limited to the Unity Editor and Standalone builds on Windows, MacOS, and Linux with the Mono scripting backend. Currently, training does not work with the IL2CPP scripting backend. Your environment will default to inference mode if training is not supported or is not currently running.

Inference

Inference is executed via the Unity Inference Engine.

CPU

All platforms supported.

GPU

All platforms supported except:

  • WebGL and GLES 3/2 on Android / iPhone

NOTE: Mobile platform support includes:

  • Vulkan for Android
  • Metal for iOS.

Headless Mode

If you enable Headless mode, you will not be able to collect visual observations from your agents.

Rendering Speed and Synchronization

Currently the speed of the game physics can only be increased to 100x real-time. The Academy also moves in time with FixedUpdate() rather than Update(), so game behavior implemented in Update() may be out of sync with the agent decision making. See Execution Order of Event Functions for more information.

You can control the frequency of Academy stepping by calling Academy.Instance.DisableAutomaticStepping(), and then calling Academy.Instance.EnvironmentStep()

Unity Inference Engine Models

Currently, only models created with our trainers are supported for running ML-Agents with a neural network behavior.

If you are new to the Unity ML-Agents package, or have a question after reading the documentation, you can checkout our GitHub Repository, which also includes a number of ways to connect with us including our ML-Agents Forum.

In order to improve the developer experience for Unity ML-Agents Toolkit, we have added in-editor analytics. Please refer to "Information that is passively collected by Unity" in the Unity Privacy Policy.