@@ -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_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
151+ /// [Agents]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md
152+ /// [Reinforcement Learning in Unity]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_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_9_docs /docs/Readme.md
154+ /// [Unity ML-Agents Toolkit manual]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Readme.md
155155 ///
156156 /// </remarks>
157- [ HelpURL ( "https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /" +
157+ [ HelpURL ( "https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /" +
158158 "docs/Learning-Environment-Design-Agents.md" ) ]
159159 [ Serializable ]
160160 [ RequireComponent ( typeof ( BehaviorParameters ) ) ]
@@ -639,8 +639,8 @@ public int CompletedEpisodes
639639 /// for information about mixing reward signals from curiosity and Generative Adversarial
640640 /// Imitation Learning (GAIL) with rewards supplied through this method.
641641 ///
642- /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#rewards
643- /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
642+ /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md#rewards
643+ /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
644644 /// </remarks>
645645 /// <param name="reward">The new value of the reward.</param>
646646 public void SetReward ( float reward )
@@ -669,8 +669,8 @@ public void SetReward(float reward)
669669 /// for information about mixing reward signals from curiosity and Generative Adversarial
670670 /// Imitation Learning (GAIL) with rewards supplied through this method.
671671 ///
672- /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#rewards
673- /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
672+ /// [Agents - Rewards]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md#rewards
673+ /// [Reward Signals]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/ML-Agents-Overview.md#a-quick-note-on-reward-signals
674674 ///</remarks>
675675 /// <param name="increment">Incremental reward value.</param>
676676 public void AddReward ( float increment )
@@ -848,8 +848,8 @@ public virtual void Initialize() { }
848848 /// implementing a simple heuristic function can aid in debugging agent actions and interactions
849849 /// with its environment.
850850 ///
851- /// [Demonstration Recorder]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#recording-demonstrations
852- /// [Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#actions
851+ /// [Demonstration Recorder]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md#recording-demonstrations
852+ /// [Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md#actions
853853 /// [GameObject]: https://docs.unity3d.com/Manual/GameObjects.html
854854 /// </remarks>
855855 /// <example>
@@ -1099,7 +1099,7 @@ void ResetSensors()
10991099 /// For more information about observations, see [Observations and Sensors].
11001100 ///
11011101 /// [GameObject]: https://docs.unity3d.com/Manual/GameObjects.html
1102- /// [Observations and Sensors]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#observations-and-sensors
1102+ /// [Observations and Sensors]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md#observations-and-sensors
11031103 /// </remarks>
11041104 public virtual void CollectObservations ( VectorSensor sensor )
11051105 {
@@ -1130,7 +1130,7 @@ public ReadOnlyCollection<float> GetObservations()
11301130 ///
11311131 /// See [Agents - Actions] for more information on masking actions.
11321132 ///
1133- /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#actions
1133+ /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md#actions
11341134 /// </remarks>
11351135 /// <seealso cref="IActionReceiver.OnActionReceived"/>
11361136 public virtual void WriteDiscreteActionMask ( IDiscreteActionMask actionMask )
@@ -1205,7 +1205,7 @@ public virtual void WriteDiscreteActionMask(IDiscreteActionMask actionMask)
12051205 ///
12061206 /// For more information about implementing agent actions see [Agents - Actions].
12071207 ///
1208- /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs /docs/Learning-Environment-Design-Agents.md#actions
1208+ /// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs /docs/Learning-Environment-Design-Agents.md#actions
12091209 /// </remarks>
12101210 /// <param name="actions">
12111211 /// Struct containing the buffers of actions to be executed at this step.
0 commit comments