Class Orthogonal
java.lang.Object
com.jml.neural_network.layers.initilizers.Orthogonal
- All Implemented Interfaces:
 Initializer
layer parameter initializer to produce random orthogonal matrix.- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionlinalg.Matrixinit(int m, int n)Initializes values of a weight/bias matrix as specified by this initializer. 
- 
Constructor Details
- 
Orthogonal
public Orthogonal()Creates an Orthogonal Initializer. 
 - 
 - 
Method Details
- 
init
public linalg.Matrix init(int m, int n)Initializes values of a weight/bias matrix as specified by this initializer.- Specified by:
 initin interfaceInitializer- Parameters:
 m- Number of rows in the matrix.n- Number of columns in the matrix.- Returns:
 - A 
Matrixinitialized with values from the distribution specified by this initializer. 
 
 -