Tianshou/tianshou/__init__.py
n+e 454c86c469
fix venv seed, add TOC in docs, and split buffer.py into several files (#303)
Things changed in this PR:

- various docs update, add TOC
- split buffer into several files
- fix venv action_space randomness
2021-03-02 12:28:28 +08:00

14 lines
191 B
Python

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