@@ -92,7 +92,7 @@ public EnvironmentConfiguration(
9292 "docs/Learning-Environment-Design-Academy.md" ) ]
9393 public abstract class Academy : MonoBehaviour
9494 {
95- const string k_ApiVersion = "API-11 " ;
95+ const string k_ApiVersion = "API-12 " ;
9696
9797 /// Temporary storage for global gravity value
9898 /// Used to restore oringal value when deriving Academy modifies it
@@ -153,7 +153,7 @@ public bool IsCommunicatorOn
153153
154154 /// If true, the Academy will use inference settings. This field is
155155 /// initialized in <see cref="Awake"/> depending on the presence
156- /// or absence of a communicator. Furthermore, it can be modified during
156+ /// or absence of a communicator. Furthermore, it can be modified during
157157 /// training via <see cref="SetIsInference"/>.
158158 bool m_IsInference = true ;
159159
@@ -184,13 +184,13 @@ public bool IsCommunicatorOn
184184 // Flag used to keep track of the first time the Academy is reset.
185185 bool m_FirstAcademyReset ;
186186
187- // The Academy uses a series of events to communicate with agents
187+ // The Academy uses a series of events to communicate with agents
188188 // to facilitate synchronization. More specifically, it ensure
189189 // that all the agents performs their steps in a consistent order (i.e. no
190190 // agent can act based on a decision before another agent has had a chance
191191 // to request a decision).
192192
193- // Signals to all the Agents at each environment step so they can use
193+ // Signals to all the Agents at each environment step so they can use
194194 // their Policy to decide on their next action.
195195 public event System . Action DecideAction ;
196196
@@ -568,13 +568,13 @@ void FixedUpdate()
568568 }
569569
570570 /// <summary>
571- /// Creates or retrieves an existing ModelRunner that uses the same
571+ /// Creates or retrieves an existing ModelRunner that uses the same
572572 /// NNModel and the InferenceDevice as provided.
573573 /// </summary>
574574 /// <param name="model"> The NNModel the ModelRunner must use </param>
575- /// <param name="brainParameters"> The brainParameters used to create
575+ /// <param name="brainParameters"> The brainParameters used to create
576576 /// the ModelRunner </param>
577- /// <param name="inferenceDevice"> The inference device (CPU or GPU)
577+ /// <param name="inferenceDevice"> The inference device (CPU or GPU)
578578 /// the ModelRunner will use </param>
579579 /// <returns> The ModelRunner compatible with the input settings</returns>
580580 public ModelRunner GetOrCreateModelRunner (
0 commit comments