public class Activations extends Object
Constructor and Description |
---|
Activations() |
Modifier and Type | Method and Description |
---|---|
static ActivationFunction |
exp()
The e^x function
|
static ActivationFunction |
hardTanh()
Hard Tanh is tanh constraining input to -1 to 1
|
static ActivationFunction |
linear()
Linear activation function, just returns the input as is
|
static ActivationFunction |
rectifiedLinear()
Rectified linear, the output: rounded
|
static ActivationFunction |
roundedLinear()
Rounded linear, the output: rounded
|
static ActivationFunction |
sigmoid()
Sigmoid function
|
static ActivationFunction |
softmax()
Soft max function used for multinomial classification
|
static ActivationFunction |
softMaxRows()
Softmax with row wise features
|
static ActivationFunction |
tanh()
Tanh function
|
public static ActivationFunction softMaxRows()
public static ActivationFunction rectifiedLinear()
public static ActivationFunction roundedLinear()
public static ActivationFunction exp()
public static ActivationFunction linear()
public static ActivationFunction tanh()
public static ActivationFunction sigmoid()
public static ActivationFunction hardTanh()
public static ActivationFunction softmax()
Copyright © 2014. All Rights Reserved.