Reinforcement Learning
ml-agents
TensorBoard
ONNX
Pyramids
deep-reinforcement-learning
ML-Agents-Pyramids
Instructions to use AnnaMats/ppo-Pyramids-Training with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ml-agents
How to use AnnaMats/ppo-Pyramids-Training with ml-agents:
mlagents-load-from-hf --repo-id="AnnaMats/ppo-Pyramids-Training" --local-dir="./download: string[]s"
- Notebooks
- Google Colab
- Kaggle
| using System; | |
| using NUnit.Framework; | |
| using UnityEngine; | |
| using Unity.MLAgents.Sensors; | |
| namespace Unity.MLAgents.Tests | |
| { | |
| [] | |
| public class CameraSensorTest | |
| { | |
| [] | |
| public void TestCameraSensor() | |
| { | |
| foreach (var grayscale in new[] { true, false }) | |
| { | |
| foreach (SensorCompressionType compression in Enum.GetValues(typeof(SensorCompressionType))) | |
| { | |
| var width = 24; | |
| var height = 16; | |
| var camera = Camera.main; | |
| var c = new GameObject(); | |
| if (ReferenceEquals(null, camera)) | |
| { | |
| camera = c.AddComponent<Camera>(); | |
| } | |
| var sensor = new CameraSensor(camera, width, height, grayscale, "TestCameraSensor", compression); | |
| var obsWriter = new ObservationWriter(); | |
| var obs = sensor.GetObservationProto(obsWriter); | |
| Assert.AreEqual((int)compression, (int)obs.CompressionType); | |
| var expectedShape = new[] { height, width, grayscale ? 1 : 3 }; | |
| Assert.AreEqual(expectedShape, obs.Shape); | |
| UnityEngine.Object.DestroyImmediate(c); | |
| } | |
| } | |
| } | |
| [] | |
| public void TestObservationType() | |
| { | |
| var width = 24; | |
| var height = 16; | |
| var camera = Camera.main; | |
| var sensor = new CameraSensor(camera, width, height, true, "TestCameraSensor", SensorCompressionType.None); | |
| var spec = sensor.GetObservationSpec(); | |
| Assert.AreEqual((int)spec.ObservationType, (int)ObservationType.Default); | |
| sensor = new CameraSensor(camera, width, height, true, "TestCameraSensor", SensorCompressionType.None, ObservationType.Default); | |
| spec = sensor.GetObservationSpec(); | |
| Assert.AreEqual((int)spec.ObservationType, (int)ObservationType.Default); | |
| sensor = new CameraSensor(camera, width, height, true, "TestCameraSensor", SensorCompressionType.None, ObservationType.GoalSignal); | |
| spec = sensor.GetObservationSpec(); | |
| Assert.AreEqual((int)spec.ObservationType, (int)ObservationType.GoalSignal); | |
| } | |
| } | |
| } | |