Tianshou/tianshou/__init__.py
Jialu Zhu a511cb4779
Add offline trainer and discrete BCQ algorithm (#263)
The result needs to be tuned after `done` issue fixed.

Co-authored-by: n+e <trinkle23897@gmail.com>
2021-01-20 18:13:04 +08:00

14 lines
191 B
Python

from tianshou import data, env, utils, policy, trainer, exploration
__version__ = "0.3.1"
__all__ = [
"env",
"data",
"utils",
"policy",
"trainer",
"exploration",
]