@@ -148,13 +148,13 @@ public void CopyActions(ActionBuffers actionBuffers)
148148 /// [OnDisable()]: https://docs.unity3d.com/ScriptReference/MonoBehaviour.OnDisable.html]
149149 /// [OnBeforeSerialize()]: https://docs.unity3d.com/ScriptReference/MonoBehaviour.OnBeforeSerialize.html
150150 /// [OnAfterSerialize()]: https://docs.unity3d.com/ScriptReference/MonoBehaviour.OnAfterSerialize.html
151- /// [Agents]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md
152- /// [Reinforcement Learning in Unity]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design.md
151+ /// [Agents]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md
152+ /// [Reinforcement Learning in Unity]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design.md
153153 /// [Unity ML-Agents Toolkit]: https://github.com/Unity-Technologies/ml-agents
154- /// [Unity ML-Agents Toolkit manual]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Readme.md
154+ /// [Unity ML-Agents Toolkit manual]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Readme.md
155155 ///
156156 /// </remarks>
157- [ HelpURL ( "https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /" +
157+ [ HelpURL ( "https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /" +
158158 "docs/Learning-Environment-Design-Agents.md" ) ]
159159 [ Serializable ]
160160 [ RequireComponent ( typeof ( BehaviorParameters ) ) ]
@@ -630,8 +630,8 @@ public int CompletedEpisodes
630630 /// for information about mixing reward signals from curiosity and Generative Adversarial
631631 /// Imitation Learning (GAIL) with rewards supplied through this method.
632632 ///
633- /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md#rewards
634- /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
633+ /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#rewards
634+ /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
635635 /// </remarks>
636636 /// <param name="reward">The new value of the reward.</param>
637637 public void SetReward ( float reward )
@@ -660,8 +660,8 @@ public void SetReward(float reward)
660660 /// for information about mixing reward signals from curiosity and Generative Adversarial
661661 /// Imitation Learning (GAIL) with rewards supplied through this method.
662662 ///
663- /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md#rewards
664- /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
663+ /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#rewards
664+ /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
665665 ///</remarks>
666666 /// <param name="increment">Incremental reward value.</param>
667667 public void AddReward ( float increment )
@@ -839,8 +839,8 @@ public virtual void Initialize() { }
839839 /// implementing a simple heuristic function can aid in debugging agent actions and interactions
840840 /// with its environment.
841841 ///
842- /// [Demonstration Recorder]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md#recording-demonstrations
843- /// [Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md#actions
842+ /// [Demonstration Recorder]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#recording-demonstrations
843+ /// [Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#actions
844844 /// [GameObject]: https://docs.unity3d.com/Manual/GameObjects.html
845845 /// </remarks>
846846 /// <example>
@@ -1087,7 +1087,7 @@ void ResetSensors()
10871087 /// For more information about observations, see [Observations and Sensors].
10881088 ///
10891089 /// [GameObject]: https://docs.unity3d.com/Manual/GameObjects.html
1090- /// [Observations and Sensors]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md#observations-and-sensors
1090+ /// [Observations and Sensors]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#observations-and-sensors
10911091 /// </remarks>
10921092 public virtual void CollectObservations ( VectorSensor sensor )
10931093 {
@@ -1118,7 +1118,7 @@ public ReadOnlyCollection<float> GetObservations()
11181118 ///
11191119 /// See [Agents - Actions] for more information on masking actions.
11201120 ///
1121- /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md#actions
1121+ /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#actions
11221122 /// </remarks>
11231123 /// <seealso cref="IActionReceiver.OnActionReceived"/>
11241124 public virtual void WriteDiscreteActionMask ( IDiscreteActionMask actionMask )
@@ -1193,7 +1193,7 @@ public virtual void WriteDiscreteActionMask(IDiscreteActionMask actionMask)
11931193 ///
11941194 /// For more information about implementing agent actions see [Agents - Actions].
11951195 ///
1196- /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_8_docs /docs/Learning-Environment-Design-Agents.md#actions
1196+ /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#actions
11971197 /// </remarks>
11981198 /// <param name="actions">
11991199 /// Struct containing the buffers of actions to be executed at this step.
0 commit comments