Cherry-pick from #200 - update the function signature - format code-style - move _compile into separate functions - fix a bug in to_torch and to_numpy (Batch) - remove None in action_range In short, the code-format only contains function-signature style and `'` -> `"`. (pick up from [black](https://github.com/psf/black))
8 lines
142 B
Python
8 lines
142 B
Python
from tianshou.exploration.random import BaseNoise, GaussianNoise, OUNoise
|
|
|
|
__all__ = [
|
|
"BaseNoise",
|
|
"GaussianNoise",
|
|
"OUNoise",
|
|
]
|