浏览代码
Merge pull request #968 from dericp/develop-curriculum-learning-refactor
Merge pull request #968 from dericp/develop-curriculum-learning-refactor
Curriculum learning moved from environment to trainer./develop-generalizationTraining-TrainerController
GitHub
6 年前
当前提交
34035176
共有 10 个文件被更改,包括 101 次插入 和 93 次删除
-
2docs/Training-Curriculum-Learning.md
-
57python/tests/test_unityagents.py
-
58python/tests/test_unitytrainers.py
-
1python/unityagents/__init__.py
-
24python/unityagents/environment.py
-
2python/unitytrainers/__init__.py
-
21python/unitytrainers/trainer_controller.py
-
14python/unitytrainers/curriculum.py
-
15python/unitytrainers/exception.py
-
0/python/unitytrainers/curriculum.py
|
|||
from .environment import * |
|||
from .brain import * |
|||
from .exception import * |
|||
from .curriculum import * |
|
|||
""" |
|||
Contains exceptions for the unitytrainers package. |
|||
""" |
|||
|
|||
class TrainerError(Exception): |
|||
""" |
|||
Any error related to the trainers in the ML-Agents Toolkit. |
|||
""" |
|||
pass |
|||
|
|||
class CurriculumError(TrainerError): |
|||
""" |
|||
Any error related to training with a curriculum. |
|||
""" |
|||
pass |
撰写
预览
正在加载...
取消
保存
Reference in new issue