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.
8 lines
142 B
Python
8 lines
142 B
Python
from tianshou.exploration.random import BaseNoise, GaussianNoise, OUNoise
|
|
|
|
__all__ = [
|
|
'BaseNoise',
|
|
'GaussianNoise',
|
|
'OUNoise',
|
|
]
|