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

1.3 KiB

Background: TensorFlow

Work In Progress

TensorFlow

TensorFlow is a deep learning library.

Link to Arthur's content?

A few words about TensorFlow and why/how it is relevant would be nice.

TensorFlow is used for training the machine learning models in ML-Agents. Unless you are implementing new algorithms, 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

Third-party used in Internal Brain mode.