Welcome to our Support Center

Orthogonal

Description

Initializer that generates an orthogonal matrix. Type : polymorphic.

 

 

Initializer that generates an orthogonal matrix. If the shape of the tensor to initialize is two-dimensional, it is initialized with an orthogonal matrix obtained from the QR decomposition of a matrix of random numbers drawn from a normal distribution. If the matrix has fewer rows than columns then the output will have orthogonal rows. Otherwise, the output will have orthogonal columns.

If the shape of the tensor to initialize is more than two-dimensional, a matrix of shape (shape[0] * … * shape[n – 2], shape[n – 1 ]) is initialized, where n is the length of the shape vector. The matrix is subsequently reshaped to give a tensor of the desired shape.

 

Input parameters

 

 seed : integer, used to make the behavior of the initializer deterministic. Note that an initializer seeded with an integer or -1 (unseeded) will produce the same random values across multiple calls.

 

 

Output parameters

 

Initializer : cluster, this cluster defines the weight initialization strategy for a model.

enum : enum, an enumeration indicating the initialization type (e.g., Zeros, Glorot, HeNormal, etc.). If enum is set to CustomInitializer, the custom class on the right will be used. Otherwise, the selected initialization strategy will be applied with default parameters.
 Class : object, a custom initializer class instance.

Example

All these exemples are snippets PNG, you can drop these Snippet onto the block diagram and get the depicted code added to your VI (Do not forget to install Deep Learning library to run it).

Table of Contents