Skip to content

Commit

Permalink
Update the comment lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmard committed Oct 19, 2021
1 parent bf0919d commit 80e4fe8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion com.unity.ml-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and this project adheres to

#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
- Added the capacity to initialize behaviors from any checkpoint and not just the latest one (#5525)

- Added the ability to get a read-only view of the stacked observations (#5523)
#### ml-agents / ml-agents-envs / gym-unity (Python)
- Set gym version in gym-unity to gym release 0.20.0
- Added support for having `beta`, `epsilon`, and `learning rate` on separate schedules (affects only PPO and POCA). (#5538)
Expand Down
4 changes: 2 additions & 2 deletions com.unity.ml-agents/Runtime/Sensors/StackingSensor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ public BuiltInSensorType GetBuiltInSensorType()
}

/// <summary>
/// Returns a read-only view of the observations that added.
/// Returns the stacked observations as a read-only collection.
/// </summary>
/// <returns>A read-only view of the observations list.</returns>
/// <returns>The stacked observations as a read-only collection.</returns>
internal ReadOnlyCollection<float> GetStackedObservations()
{
List<float> observations = new List<float>();
Expand Down

0 comments on commit 80e4fe8

Please sign in to comment.