API Reference - DropoutLayers
Constructors
Dropout
DropoutLayer.Dropout{tensor: tensor, dropoutRate: number}: AutomaticDifferentiationTensor
Parameters:
-
tensor: The tensor that will be used to drop values.
-
dropoutRate: The rate at which the input values are converted to zero. [Default: 0.5]
Returns:
- AutomaticDifferentiationTensor: The automatic differentiation tensor that is created as a result of calling this function.
Dropout1D
DropoutLayer.Dropout1D{tensor: tensor, dropoutRate: number}: AutomaticDifferentiationTensor
Parameters:
-
tensor: The tensor that will be used to drop values.
-
dropoutRate: The rate at which the input values are converted to zero. [Default: 0.5]
Returns:
- AutomaticDifferentiationTensor: The automatic differentiation tensor that is created as a result of calling this function.
Dropout2D
DropoutLayer.Dropout2D{tensor: tensor, dropoutRate: number}: AutomaticDifferentiationTensor
Parameters:
-
tensor: The tensor that will be used to drop values.
-
dropoutRate: The rate at which the input values are converted to zero. [Default: 0.5]
Returns:
- AutomaticDifferentiationTensor: The automatic differentiation tensor that is created as a result of calling this function.
Dropout3D
DropoutLayer.Dropout3D{tensor: tensor, dropoutRate: number}: AutomaticDifferentiationTensor
Parameters:
-
tensor: The tensor that will be used to drop values.
-
dropoutRate: The rate at which the input values are converted to zero. [Default: 0.5]
Returns:
- AutomaticDifferentiationTensor: The automatic differentiation tensor that is created as a result of calling this function.
DropoutND
DropoutLayer.DropoutND{tensor: tensor, dropoutRate: number}: AutomaticDifferentiationTensor
Parameters:
-
tensor: The tensor that will be used to drop values.
-
dropoutRate: The rate at which the input values are converted to zero. [Default: 0.5]
Returns:
- AutomaticDifferentiationTensor: The automatic differentiation tensor that is created as a result of calling this function.