danagi c59ad40aef
Add auto alpha tuning and exploration noise for sac. (#80)
Add class BaseNoise and GaussianNoise for the concept of exploration noise.
Add new test for sac tested in MountainCarContinuous-v0,
which should benefits from the two above new feature.
2020-06-16 22:17:28 +08:00

8 lines
142 B
Python

from tianshou.exploration.random import BaseNoise, GaussianNoise, OUNoise
__all__ = [
'BaseNoise',
'GaussianNoise',
'OUNoise',
]