浏览代码

Merge Hotfix 0.10.1 to Develop (#2708)

/develop-gpu-test
GitHub 5 年前
当前提交
7e68f08f
共有 5 个文件被更改,包括 30 次插入12 次删除
  1. 8
      config/sac_trainer_config.yaml
  2. 2
      gym-unity/setup.py
  3. 2
      ml-agents-envs/setup.py
  4. 4
      ml-agents/setup.py
  5. 26
      .github/stale.yml

8
config/sac_trainer_config.yaml


BouncerLearning:
normalize: true
beta: 0.0
max_steps: 5.0e5
num_layers: 2
hidden_units: 64

max_steps: 5.0e4
init_entcoef: 0.05
beta: 1.0e-2
hidden_units: 256
summary_freq: 2000
time_horizon: 64

StrikerLearning:
max_steps: 5.0e5
learning_rate: 1e-3
beta: 1.0e-2
hidden_units: 256
summary_freq: 2000
time_horizon: 128

GoalieLearning:
max_steps: 5.0e5
learning_rate: 1e-3
beta: 1.0e-2
hidden_units: 256
summary_freq: 2000
time_horizon: 128

hidden_units: 256
buffer_init_steps: 1000
num_layers: 1
beta: 1.0e-2
max_steps: 5.0e5
buffer_size: 500000
init_entcoef: 0.01

num_layers: 2
hidden_units: 128
memory_size: 256
beta: 0.0
init_entcoef: 0.1
max_steps: 5.0e5
summary_freq: 1000

num_layers: 1
hidden_units: 128
memory_size: 256
beta: 1.0e-2
gamma: 0.99
batch_size: 64
max_steps: 5.0e5

num_layers: 1
hidden_units: 128
memory_size: 256
beta: 1.0e-2
gamma: 0.99
buffer_size: 1024
batch_size: 64

2
gym-unity/setup.py


author_email="ML-Agents@unity3d.com",
url="https://github.com/Unity-Technologies/ml-agents",
packages=find_packages(),
install_requires=["gym", "mlagents_envs==0.10.0"],
install_requires=["gym", "mlagents_envs==0.10.1"],
)

2
ml-agents-envs/setup.py


setup(
name="mlagents_envs",
version="0.10.0",
version="0.10.1",
description="Unity Machine Learning Agents Interface",
url="https://github.com/Unity-Technologies/ml-agents",
author="Unity Technologies",

4
ml-agents/setup.py


setup(
name="mlagents",
version="0.10.0",
version="0.10.1",
description="Unity Machine Learning Agents",
long_description=long_description,
long_description_content_type="text/markdown",

"h5py>=2.9.0",
"jupyter",
"matplotlib",
"mlagents_envs==0.10.0",
"mlagents_envs==0.10.1",
"numpy>=1.13.3,<2.0",
"Pillow>=4.2.1",
"protobuf>=3.6",

26
.github/stale.yml


# Configuration for probot-stale - https://github.com/probot/stale
# General configuration
# Label to use when marking as stale
staleLabel: stale
# Only run on issues
only: issues
# Issue specific configuration
issues:
limitPerRun: 5
daysUntilStale: 14
daysUntilClose: 14
markComment: >
This issue has been automatically marked as stale because it has not had activity in the
last 14 days. It will be closed in the next 14 days if no further activity occurs.
Thank you for your contributions.
closeComment: >
This issue has been automatically closed because it has not had activity in the
last 28 days. If this issue is still valid, please ping a maintainer.
Thank you for your contributions.
exemptLabels:
- bug
- request
- help-wanted
正在加载...
取消
保存