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

2.8 KiB

Background: TensorFlow

As discussed in our machine learning background page, many of the algorithms we provide in ML-Agents leverage some form of deep learning. More specifically, our implementations are built on top of the open-source library TensorFlow. This means that the models produced by ML-Agents are (currently) in a format only understood by TensorFlow. In this page we provide a brief overview of TensorFlow, in addition to TensorFlow-related tools that we leverage within ML-Agents.

TensorFlow

TensorFlow is an open source library for performing computations using data flow graphs, the underlying representation of deep learning models. It facilitates training and inference on CPUs and GPUs in a desktop, server, or mobile device. Within ML-Agents, when you train the behavior of an Agent, the output is a TensorFlow model (.bytes) file that you can then embed within an Internal Brain. Unless you implement a new algorithm, the use of TensorFlow is mostly abstracted away and behind the scenes.

TensorBoard

One component of training models with TensorFlow is setting the values of certain model attributes (called hyperparameters). Finding the right values of these hyperparameters can require a few iterations. Consequently, we leverage a visualization tool within TensorFlow called TensorBoard. It allows the visualization of certain agent attributes (e.g. reward) throughout training which can be helpful in both building intuitions for the different hyperparameters and setting the optimal values for your Unity environment. We provide more details on setting the hyperparameters in later parts of the documentation, but, in the meantime, if you are unfamiliar with TensorBoard we recommend this tutorial.

TensorFlowSharp

One of the drawbacks of TensorFlow is that it does not provide a native C# API. This means that the Internal Brain is not natively supported since Unity scripts are written in C#. Consequently, to enable the Internal Brain, we leverage a third-party library TensorFlowSharp which provides .NET bindings to TensorFlow. Thus, when a Unity environment that contains an Internal Brain is built, inference is performed via TensorFlowSharp. We provide an additional in-depth overview of how to leverage TensorFlowSharp within Unity which will become more relevant once you install and start training behaviors within ML-Agents. Given the reliance on TensorFlowSharp, the Internal Brain is currently marked as experimental.