-
Notifications
You must be signed in to change notification settings - Fork 7
CNN_Specification
Abil N George edited this page Sep 1, 2014
·
1 revision
It has 2 parts:
cnnmlp
Each one contain a json object.cnn describes convolution layer configuration and mlp describes hidden layer configuration.
-
cnncontains a json object with following parameters:
layers: An Array of json objects.Each one decribes a convolution layer which contains:
convmat_dim: Dimension of Convolution Weightnum_filters: No. of Feature mapspoolsize: Dimension for Max-poolingflatten: whether to flatten output or not(true for last layer else false)update: true if weight need to updated during training.
activation: Activation function used by layersuse_fast: if true program will use pylearn2 library for faster computation (Default Value = false)
-
mlpcontains a json object with following parameters:
layers: An Array contain size of hidden layers.activation: Activation function used by layers
Also See