* add makefile * bump version * add isort and yapf * update contributing.md * update PR template * spelling check
17 lines
395 B
Python
17 lines
395 B
Python
"""Trainer package."""
|
|
|
|
# isort:skip_file
|
|
|
|
from tianshou.trainer.utils import test_episode, gather_info
|
|
from tianshou.trainer.onpolicy import onpolicy_trainer
|
|
from tianshou.trainer.offpolicy import offpolicy_trainer
|
|
from tianshou.trainer.offline import offline_trainer
|
|
|
|
__all__ = [
|
|
"offpolicy_trainer",
|
|
"onpolicy_trainer",
|
|
"offline_trainer",
|
|
"test_episode",
|
|
"gather_info",
|
|
]
|