Tianshou/tianshou/__init__.py
n+e 64af7ea839
fix critical bugs in MAPolicy and docs update (#207)
- fix a bug in MAPolicy: `buffer.rew = Batch()` doesn't change `buffer.rew` (thanks mypy)
- polish examples/box2d/bipedal_hardcore_sac.py
- several docs update
- format setup.py and bump version to 0.2.7
2020-09-08 21:10:48 +08:00

18 lines
366 B
Python

from tianshou import data, env, utils, policy, trainer, exploration
# pre-compile some common-type function-call to produce the correct benchmark
# result: https://github.com/thu-ml/tianshou/pull/193#discussion_r480536371
utils.pre_compile()
__version__ = '0.2.7'
__all__ = [
'env',
'data',
'utils',
'policy',
'trainer',
'exploration',
]