Tianshou/tianshou/__init__.py

18 lines
366 B
Python
Raw Normal View History

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()
2020-03-09 11:38:04 +08:00
__version__ = '0.2.6'
2020-03-13 17:49:22 +08:00
__all__ = [
'env',
2020-03-13 21:47:17 +08:00
'data',
2020-03-13 17:49:22 +08:00
'utils',
2020-03-18 21:45:41 +08:00
'policy',
2020-03-19 17:23:46 +08:00
'trainer',
2020-03-18 21:45:41 +08:00
'exploration',
2020-03-13 17:49:22 +08:00
]