Class GaussianDropout
Apply multiplicative 1-centered Gaussian noise. As it is a regularization layer, it is only active at training time.
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Keras.Layers
Assembly: Keras.dll
Syntax
public class GaussianDropout : BaseLayer, IDisposable
Constructors
| Improve this Doc View SourceGaussianDropout(Single)
Initializes a new instance of the GaussianDropout class.
Declaration
public GaussianDropout(float rate)
Parameters
Type | Name | Description |
---|---|---|
System.Single | rate | float, drop probability (as with Dropout). The multiplicative noise will have standard deviation sqrt(rate / (1 - rate)). |
Implements
System.IDisposable