├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs ├── Agents-Editor-Interface.md ├── Example-Environments.md ├── Getting-Started-with-Balance-Ball.md ├── Limitations-&-Common-Issues.md ├── Making-a-new-Unity-Environment.md ├── Organizing-the-Scene.md ├── Readme.md ├── Training-on-Amazon-Web-Service.md ├── Unity-Agents---Python-API.md ├── Unity-Agents-Overview.md ├── Using-TensorFlow-Sharp-in-Unity-(Experimental).md ├── best-practices-ppo.md ├── best-practices.md ├── broadcast.md ├── curriculum.md ├── installation.md └── monitor.md ├── images ├── academy.png ├── agent.png ├── agents_diagram.png ├── balance.png ├── banner.png ├── brain.png ├── broadcast.png ├── crawler.png ├── curriculum.png ├── curriculum_progress.png ├── gridworld.png ├── internal_brain.png ├── math.png ├── monitor.png ├── normalization.png ├── player_brain.png ├── push.png ├── reacher.png ├── scene-hierarchy.png ├── tennis.png ├── unity-logo-rgb.png ├── unity-wide.png └── wall.png └── python ├── Basics.ipynb ├── PPO.ipynb ├── README.md ├── curricula ├── push.json ├── test.json └── wall.json ├── ppo.py ├── ppo ├── history.py ├── models.py └── trainer.py ├── requirements.txt ├── setup.py ├── test_unityagents.py └── unityagents ├── __init__.py ├── brain.py ├── curriculum.py ├── environment.py └── exception.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/README.md -------------------------------------------------------------------------------- /docs/Agents-Editor-Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Agents-Editor-Interface.md -------------------------------------------------------------------------------- /docs/Example-Environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Example-Environments.md -------------------------------------------------------------------------------- /docs/Getting-Started-with-Balance-Ball.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Getting-Started-with-Balance-Ball.md -------------------------------------------------------------------------------- /docs/Limitations-&-Common-Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Limitations-&-Common-Issues.md -------------------------------------------------------------------------------- /docs/Making-a-new-Unity-Environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Making-a-new-Unity-Environment.md -------------------------------------------------------------------------------- /docs/Organizing-the-Scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Organizing-the-Scene.md -------------------------------------------------------------------------------- /docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Readme.md -------------------------------------------------------------------------------- /docs/Training-on-Amazon-Web-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Training-on-Amazon-Web-Service.md -------------------------------------------------------------------------------- /docs/Unity-Agents---Python-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Unity-Agents---Python-API.md -------------------------------------------------------------------------------- /docs/Unity-Agents-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Unity-Agents-Overview.md -------------------------------------------------------------------------------- /docs/Using-TensorFlow-Sharp-in-Unity-(Experimental).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/Using-TensorFlow-Sharp-in-Unity-(Experimental).md -------------------------------------------------------------------------------- /docs/best-practices-ppo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/best-practices-ppo.md -------------------------------------------------------------------------------- /docs/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/best-practices.md -------------------------------------------------------------------------------- /docs/broadcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/broadcast.md -------------------------------------------------------------------------------- /docs/curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/curriculum.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/docs/monitor.md -------------------------------------------------------------------------------- /images/academy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/academy.png -------------------------------------------------------------------------------- /images/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/agent.png -------------------------------------------------------------------------------- /images/agents_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/agents_diagram.png -------------------------------------------------------------------------------- /images/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/balance.png -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/brain.png -------------------------------------------------------------------------------- /images/broadcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/broadcast.png -------------------------------------------------------------------------------- /images/crawler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/crawler.png -------------------------------------------------------------------------------- /images/curriculum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/curriculum.png -------------------------------------------------------------------------------- /images/curriculum_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/curriculum_progress.png -------------------------------------------------------------------------------- /images/gridworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/gridworld.png -------------------------------------------------------------------------------- /images/internal_brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/internal_brain.png -------------------------------------------------------------------------------- /images/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/math.png -------------------------------------------------------------------------------- /images/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/monitor.png -------------------------------------------------------------------------------- /images/normalization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/normalization.png -------------------------------------------------------------------------------- /images/player_brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/player_brain.png -------------------------------------------------------------------------------- /images/push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/push.png -------------------------------------------------------------------------------- /images/reacher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/reacher.png -------------------------------------------------------------------------------- /images/scene-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/scene-hierarchy.png -------------------------------------------------------------------------------- /images/tennis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/tennis.png -------------------------------------------------------------------------------- /images/unity-logo-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/unity-logo-rgb.png -------------------------------------------------------------------------------- /images/unity-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/unity-wide.png -------------------------------------------------------------------------------- /images/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/images/wall.png -------------------------------------------------------------------------------- /python/Basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/Basics.ipynb -------------------------------------------------------------------------------- /python/PPO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/PPO.ipynb -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/README.md -------------------------------------------------------------------------------- /python/curricula/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/curricula/push.json -------------------------------------------------------------------------------- /python/curricula/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/curricula/test.json -------------------------------------------------------------------------------- /python/curricula/wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/curricula/wall.json -------------------------------------------------------------------------------- /python/ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/ppo.py -------------------------------------------------------------------------------- /python/ppo/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/ppo/history.py -------------------------------------------------------------------------------- /python/ppo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/ppo/models.py -------------------------------------------------------------------------------- /python/ppo/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/ppo/trainer.py -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/test_unityagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/test_unityagents.py -------------------------------------------------------------------------------- /python/unityagents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/unityagents/__init__.py -------------------------------------------------------------------------------- /python/unityagents/brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/unityagents/brain.py -------------------------------------------------------------------------------- /python/unityagents/curriculum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/unityagents/curriculum.py -------------------------------------------------------------------------------- /python/unityagents/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/unityagents/environment.py -------------------------------------------------------------------------------- /python/unityagents/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Unity_ML_Agents/HEAD/python/unityagents/exception.py --------------------------------------------------------------------------------