Skip to content

GaussianNoise

source

GaussianNoise(
   mu: float = 0, sigma: float = 1.0
)


Gaussian noise operation for processing state-based observations.

Args

  • mu (float or th.Tensor) : mean of the distribution.
  • scale (float or th.Tensor) : standard deviation of the distribution.

Returns

Augmented states.

Methods:

.forward

source

.forward(
   x: th.Tensor
)