Class ThresholdedReLU
Thresholded Rectified Linear Unit. It follows: f(x) = x for x > theta, f(x) = 0 otherwise.
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 ThresholdedReLU : BaseLayer, IDisposable
Constructors
| Improve this Doc View SourceThresholdedReLU(Single)
Initializes a new instance of the ThresholdedReLU class.
Declaration
public ThresholdedReLU(float theta = 1F)
Parameters
Type | Name | Description |
---|---|---|
System.Single | theta | float >= 0. Threshold location of activation. |
Implements
System.IDisposable