Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.03 KB

File metadata and controls

25 lines (19 loc) · 1.03 KB

Functions

Basic functions. The VectorFunction abstract class provides an interface for a standard layer in a neural network. It takes an array of values and outputs an array of values. An additional operation is provided for backpropagation. The derivative of each output with respect to each input is given in a two-dimensional matrix.

VectorFunction function = new VectorFunction() { ... };
double[] input = new double[] { ... };

double[] activate = function.pass(input);
double[][] derivative = function.backpropagate(input);

The VectorFunction class also contains a few static instances of common activation functions. Subclass ScalarFunction performs elementwise operations and may be used to execute more efficiently.

  • Rectified linear unit
  • Softmax
  • Softplus
  • Hyperbolic tangent
  • Logistic
  • Swish
  • Half-logarithmic, half-linear Of all these default functions, only softmax performs a full vector operation. The rest use the ScalarFunction subclass and performs efficient elementwise operations.