Skip to content

Commit 4feccd2

Browse files
Changing the versions for the release_10 (#4643)
1 parent 6ff6575 commit 4feccd2

File tree

18 files changed

+40
-54
lines changed

18 files changed

+40
-54
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Unity ML-Agents Toolkit
44

5-
[![docs badge](https://img.shields.io/badge/docs-reference-blue.svg)](https://github.com/Unity-Technologies/ml-agents/tree/release_9_docs/docs/)
5+
[![docs badge](https://img.shields.io/badge/docs-reference-blue.svg)](https://github.com/Unity-Technologies/ml-agents/tree/release_10_docs/docs/)
66

77
[![license badge](https://img.shields.io/badge/license-Apache--2.0-green.svg)](LICENSE)
88

@@ -48,8 +48,8 @@ descriptions of all these features.
4848

4949
## Releases & Documentation
5050

51-
**Our latest, stable release is `Release 9`. Click
52-
[here](https://github.com/Unity-Technologies/ml-agents/tree/release_9_docs/docs/Readme.md)
51+
**Our latest, stable release is `Release 10`. Click
52+
[here](https://github.com/Unity-Technologies/ml-agents/tree/release_10_docs/docs/Readme.md)
5353
to get started with the latest release of ML-Agents.**
5454

5555
The table below lists all our releases, including our `master` branch which is

com.unity.ml-agents.extensions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"unity": "2018.4",
66
"description": "A source-only package for new features based on ML-Agents",
77
"dependencies": {
8-
"com.unity.ml-agents": "1.5.0-preview"
8+
"com.unity.ml-agents": "1.6.0-preview"
99
}
1010
}

com.unity.ml-agents/CHANGELOG.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,6 @@ and this project adheres to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

99

10-
## [Unreleased]
11-
### Major Changes
12-
#### com.unity.ml-agents (C#)
13-
#### ml-agents / ml-agents-envs / gym-unity (Python)
14-
15-
### Minor Changes
16-
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
17-
#### ml-agents / ml-agents-envs / gym-unity (Python)
18-
19-
### Bug Fixes
20-
#### com.unity.ml-agents (C#)
21-
#### ml-agents / ml-agents-envs / gym-unity (Python)
22-
23-
2410
## [1.6.0-preview] - 2020-11-18
2511
### Major Changes
2612
#### com.unity.ml-agents (C#)

com.unity.ml-agents/Documentation~/com.unity.ml-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ a number of ways to [connect with us] including our [ML-Agents Forum].
114114
[unity ML-Agents Toolkit]: https://github.com/Unity-Technologies/ml-agents
115115
[unity inference engine]: https://docs.unity3d.com/Packages/com.unity.barracuda@latest/index.html
116116
[package manager documentation]: https://docs.unity3d.com/Manual/upm-ui-install.html
117-
[installation instructions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs/docs/Installation.md
117+
[installation instructions]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs/docs/Installation.md
118118
[github repository]: https://github.com/Unity-Technologies/ml-agents
119119
[python package]: https://github.com/Unity-Technologies/ml-agents
120120
[execution order of event functions]: https://docs.unity3d.com/Manual/ExecutionOrder.html

com.unity.ml-agents/Runtime/Academy.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* API. For more information on each of these entities, in addition to how to
2121
* set-up a learning environment and train the behavior of characters in a
2222
* Unity scene, please browse our documentation pages on GitHub:
23-
* https://github.com/Unity-Technologies/ml-agents/tree/release_9_docs/docs/
23+
* https://github.com/Unity-Technologies/ml-agents/tree/release_10_docs/docs/
2424
*/
2525

2626
namespace Unity.MLAgents
@@ -61,7 +61,7 @@ void FixedUpdate()
6161
/// fall back to inference or heuristic decisions. (You can also set agents to always use
6262
/// inference or heuristics.)
6363
/// </remarks>
64-
[HelpURL("https://github.com/Unity-Technologies/ml-agents/tree/release_9_docs/" +
64+
[HelpURL("https://github.com/Unity-Technologies/ml-agents/tree/release_10_docs/" +
6565
"docs/Learning-Environment-Design.md")]
6666
public class Academy : IDisposable
6767
{
@@ -95,7 +95,7 @@ public class Academy : IDisposable
9595
/// Unity package version of com.unity.ml-agents.
9696
/// This must match the version string in package.json and is checked in a unit test.
9797
/// </summary>
98-
internal const string k_PackageVersion = "1.5.0-preview";
98+
internal const string k_PackageVersion = "1.6.0-preview";
9999

100100
const int k_EditorTrainingPort = 5004;
101101

com.unity.ml-agents/Runtime/Actuators/IActionReceiver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public interface IActionReceiver
160160
///
161161
/// See [Agents - Actions] for more information on masking actions.
162162
///
163-
/// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs/docs/Learning-Environment-Design-Agents.md#actions
163+
/// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs/docs/Learning-Environment-Design-Agents.md#actions
164164
/// </remarks>
165165
/// <seealso cref="IActionReceiver.OnActionReceived"/>
166166
void WriteDiscreteActionMask(IDiscreteActionMask actionMask);

com.unity.ml-agents/Runtime/Actuators/IDiscreteActionMask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public interface IDiscreteActionMask
1717
///
1818
/// See [Agents - Actions] for more information on masking actions.
1919
///
20-
/// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs/docs/Learning-Environment-Design-Agents.md#actions
20+
/// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs/docs/Learning-Environment-Design-Agents.md#actions
2121
/// </remarks>
2222
/// <param name="branch">The branch for which the actions will be masked.</param>
2323
/// <param name="actionIndices">The indices of the masked actions.</param>

com.unity.ml-agents/Runtime/Agent.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -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.

com.unity.ml-agents/Runtime/Demonstrations/DemonstrationRecorder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Unity.MLAgents.Demonstrations
1919
/// See [Imitation Learning - Recording Demonstrations] for more information.
2020
///
2121
/// [GameObject]: https://docs.unity3d.com/Manual/GameObjects.html
22-
/// [Imitation Learning - Recording Demonstrations]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs/docs//Learning-Environment-Design-Agents.md#recording-demonstrations
22+
/// [Imitation Learning - Recording Demonstrations]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs/docs//Learning-Environment-Design-Agents.md#recording-demonstrations
2323
/// </remarks>
2424
[RequireComponent(typeof(Agent))]
2525
[AddComponentMenu("ML Agents/Demonstration Recorder", (int)MenuGroup.Default)]

com.unity.ml-agents/Runtime/DiscreteActionMasker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internal DiscreteActionMasker(IDiscreteActionMask actionMask)
3333
///
3434
/// See [Agents - Actions] for more information on masking actions.
3535
///
36-
/// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_9_docs/docs/Learning-Environment-Design-Agents.md#actions
36+
/// [Agents - Actions]: https://github.com/Unity-Technologies/ml-agents/blob/release_10_docs/docs/Learning-Environment-Design-Agents.md#actions
3737
/// </remarks>
3838
/// <param name="branch">The branch for which the actions will be masked.</param>
3939
/// <param name="actionIndices">The indices of the masked actions.</param>

0 commit comments

Comments
 (0)