- 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
18 lines
366 B
Python
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',
|
|
]
|