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
File size: 1,469 Bytes
05c9ac2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | //This script lets you change time scale during training. It is not a required script for this demo to function
using UnityEngine;
namespace MLAgentsExamples
{
public class AdjustTrainingTimescale : MonoBehaviour
{
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.Alpha1))
{
Time.timeScale = 1f;
}
if (Input.GetKeyDown(KeyCode.Alpha2))
{
Time.timeScale = 2f;
}
if (Input.GetKeyDown(KeyCode.Alpha3))
{
Time.timeScale = 3f;
}
if (Input.GetKeyDown(KeyCode.Alpha4))
{
Time.timeScale = 4f;
}
if (Input.GetKeyDown(KeyCode.Alpha5))
{
Time.timeScale = 5f;
}
if (Input.GetKeyDown(KeyCode.Alpha6))
{
Time.timeScale = 6f;
}
if (Input.GetKeyDown(KeyCode.Alpha7))
{
Time.timeScale = 7f;
}
if (Input.GetKeyDown(KeyCode.Alpha8))
{
Time.timeScale = 8f;
}
if (Input.GetKeyDown(KeyCode.Alpha9))
{
Time.timeScale = 9f;
}
if (Input.GetKeyDown(KeyCode.Alpha0))
{
Time.timeScale *= 2f;
}
}
}
}
|