@@ -5,8 +5,8 @@ next step is to initiate a training run. Training in the ML-Agents Toolkit is
55powered by a dedicated Python package, ` mlagents ` . This package exposes a
66command ` mlagents-learn ` that is the single entry point for all training
77workflows (e.g. reinforcement leaning, imitation learning, curriculum learning).
8- Its implementation can be found at
9- [ ml-agents/mlagents/trainers/learn.py ] ( https://github.com/Unity-Technologies/ml-agents/blob/release_22/ml-agents/mlagents/trainers/learn.py ) .
8+ Its implementation can be found
9+ [ here ] ( https://github.com/Unity-Technologies/ml-agents/blob/release_22/ml-agents/mlagents/trainers/learn.py ) .
1010
1111## Training with mlagents-learn
1212
@@ -130,13 +130,13 @@ ML-Agents Toolkit involves tuning the training hyperparameters and
130130configuration. This guide contains some best practices for tuning the training
131131process when the default parameters don't seem to be giving the level of
132132performance you would like. We provide sample configuration files for our
133- example environments in the [ config/ ] ( https://github.com/Unity-Technologies/ml-agents/tree/release_22/config/ ) directory. The
133+ example environments in the [ config] ( https://github.com/Unity-Technologies/ml-agents/tree/release_22/config/ ) directory. The
134134` config/ppo/3DBall.yaml ` was used to train the 3D Balance Ball in the
135135[ Running an Example] ( Sample.md ) guide. That configuration file uses the
136136PPO trainer, but we also have configuration files for SAC and GAIL.
137137
138138Additionally, the set of configurations you provide depend on the training
139- functionalities you use (see [ ML-Agents Toolkit Overview ] ( ML-Agents-Overview.md )
139+ functionalities you use (see [ ML-Agents Theory ] ( ML-Agents-Overview.md )
140140for a description of all the training functionalities). Each functionality you
141141add typically has its own training configurations. For instance:
142142
@@ -481,8 +481,7 @@ Below is a list of the `sampler_type` values supported by the toolkit.
481481 ` interval_2_max` ], ...]
482482 - **parameters** - `intervals`
483483
484- The implementation of the samplers can be found in the
485- [Samplers.cs file](https://github.com/Unity-Technologies/ml-agents/blob/main/com.unity.ml-agents/Runtime/Sampler.cs).
484+ The implementation of the samplers can be found [here](https://github.com/Unity-Technologies/ml-agents/blob/main/com.unity.ml-agents/Runtime/Sampler.cs).
486485
487486# #### Training with Environment Parameter Randomization
488487
0 commit comments