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

22 行
889 B

#!/usr/bin/env python
from setuptools import setup, Command, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='unityagents',
version='0.1',
description='Unity Machine Learning Agents',
license='Apache License 2.0',
author='Unity Technologies',
author_email='ML-Agents@unity3d.com',
url='https://github.com/Unity-Technologies/ml-agents',
packages=find_packages(exclude = ['ppo']),
install_requires = required,
long_description= ("Unity Machine Learning Agents allows researchers and developers "
"to transform games and simulations created using the Unity Editor into environments "
"where intelligent agents can be trained using reinforcement learning, evolutionary "
"strategies, or other machine learning methods through a simple to use Python API.")
)