浏览代码

Update section name in changelog.md (#3499)

/release-0.14.1
GitHub 4 年前
当前提交
18e1d01b
共有 8 个文件被更改,包括 18 次插入25 次删除
  1. 5
      Project/Assets/ML-Agents/Examples/SharedAssets/Materials/White.mat
  2. 7
      Project/Assets/ML-Agents/Examples/WallJump/Materials/TransparentWall.mat
  3. 7
      Project/Assets/ML-Agents/Examples/WallJump/Materials/spawnVolumeMaterial.mat
  4. 16
      com.unity.ml-agents/CHANGELOG.md
  5. 2
      com.unity.ml-agents/package.json
  6. 2
      gym-unity/gym_unity/__init__.py
  7. 2
      ml-agents-envs/mlagents_envs/__init__.py
  8. 2
      ml-agents/mlagents/trainers/__init__.py

5
Project/Assets/ML-Agents/Examples/SharedAssets/Materials/White.mat


Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: White
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _GLOSSYREFLECTIONS_OFF _SPECULARHIGHLIGHTS_OFF

7
Project/Assets/ML-Agents/Examples/WallJump/Materials/TransparentWall.mat


Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: TransparentWall
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _ALPHABLEND_ON

- _UVSec: 0
- _ZWrite: 0
m_Colors:
- _Color: {r: 0.56228375, g: 0.76044035, b: 0.9558824, a: 0.603}
- _Color: {r: 0.043137256, g: 0.0627451, b: 0.5764706, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}

7
Project/Assets/ML-Agents/Examples/WallJump/Materials/spawnVolumeMaterial.mat


Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: spawnVolumeMaterial
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _ALPHABLEND_ON

- _UVSec: 0
- _ZWrite: 0
m_Colors:
- _Color: {r: 0, g: 0.83448315, b: 1, a: 0.303}
- _Color: {r: 0.09411766, g: 0.098039225, b: 0.7568628, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}

16
com.unity.ml-agents/CHANGELOG.md


The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Major Changes
- Agent.CollectObservations now takes a VectorSensor argument. It was also overloaded to optionally take an ActionMasker argument. (#3352, #3389)
### Minor Changes
- Monitor.cs was moved to Examples. (#3372)
- Automatic stepping for Academy is now controlled from the AutomaticSteppingEnabled property. (#3376)
- The GetEpisodeCount, GetStepCount, GetTotalStepCount and methods of Academy were changed to EpisodeCount, StepCount, TotalStepCount properties respectively. (#3376)
- Several classes were changed from public to internal visibility. (#3390)
- Academy.RegisterSideChannel and UnregisterSideChannel methods were added. (#3391)
- A tutorial on adding custom SideChannels was added (#3391)
- Update Barracuda to 0.6.0-preview
## [0.14.1-preview] - 2020-02-25
- Fixed demonstration recording of experiences when the Agent is done. (#3463)
- Fixed a bug with the rewards of multiple Agents in the gym interface (#3471, #3496)
## [0.14.0-preview] - 2020-02-13

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


{
"name": "com.unity.ml-agents",
"displayName":"ML Agents",
"version": "0.14.0-preview",
"version": "0.14.1-preview",
"unity": "2018.4",
"description": "Add interactivity to your game with Machine Learning Agents trained using Deep Reinforcement Learning.",
"dependencies": {

2
gym-unity/gym_unity/__init__.py


__version__ = "0.14.0"
__version__ = "0.14.1"

2
ml-agents-envs/mlagents_envs/__init__.py


__version__ = "0.14.0"
__version__ = "0.14.1"

2
ml-agents/mlagents/trainers/__init__.py


__version__ = "0.14.0"
__version__ = "0.14.1"
正在加载...
取消
保存