浏览代码

Update barracuda in the hopes that our burst crashes go away. (#4359) (#4365)

/MLA-1734-demo-provider
GitHub 4 年前
当前提交
cf570f8c
共有 3 个文件被更改,包括 4 次插入2 次删除
  1. 1
      com.unity.ml-agents/CHANGELOG.md
  2. 2
      com.unity.ml-agents/package.json
  3. 3
      ml-agents/tests/yamato/yamato_utils.py

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


### Minor Changes
#### com.unity.ml-agents (C#)
- Update Barracuda to 1.0.2.
#### ml-agents / ml-agents-envs / gym-unity (Python)
### Bug Fixes

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


"unity": "2018.4",
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
"dependencies": {
"com.unity.barracuda": "1.0.1"
"com.unity.barracuda": "1.0.2"
}
}

3
ml-agents/tests/yamato/yamato_utils.py


Try to find the player executable. This seems to vary between Unity versions.
"""
ignored_extension = frozenset([".dll", ".dylib", ".bundle"])
ignored_files = frozenset(["macblas"])
if ext in ignored_extension:
if ext in ignored_extension or filename in ignored_files:
continue
file_path = os.path.join(root, filename)
if os.access(file_path, os.X_OK):

正在加载...
取消
保存