Table of Contents ▸ List of Commands ▸ Neural Networks ▸ nn_fc | ◀ nn_dropout | nn_fcnl ▶ |
nn_fc
Arguments:
- out,in,nb_channels>0,_learning_mode,_regularization>=0,_initialization
Description:
Add a fc layer (fully connected layer) to the current network.learning_mode can be { 0:No learning | 1:Weights only | 2:Biases only | 3:Weights+biases }.
initialization can be { 0:Zero | 1:Identity | 2:Lecun-initialization | 3:He-initialization }.
Default values:
learning_mode=3, regularization=0 and initialization=2.