Things changed in this PR: - various docs update, add TOC - split buffer into several files - fix venv action_space randomness
14 lines
191 B
Python
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",
|
|
]
|