Tianshou/tianshou/__init__.py
n+e cb65b56b13
v0.3.2 (#292)
Throw a warning in ListReplayBuffer.

This version update is needed because of #289, the previous v0.3.1 cannot work well under torch<=1.6.0 with cuda environment.
2021-02-16 09:31:46 +08:00

14 lines
191 B
Python

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