We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It has 2 parts:
cnn mlp
cnn
mlp
Each one contain a json object.cnn describes convolution layer configuration and mlp describes hidden layer configuration.
layers: An Array of json objects.Each one decribes a convolution layer which contains: convmat_dim : Dimension of Convolution Weight num_filters : No. of Feature maps poolsize : Dimension for Max-pooling flatten : whether to flatten output or not(true for last layer else false) update : true if weight need to updated during training.
layers
convmat_dim : Dimension of Convolution Weight num_filters : No. of Feature maps poolsize : Dimension for Max-pooling flatten : whether to flatten output or not(true for last layer else false) update : true if weight need to updated during training.
convmat_dim
num_filters
poolsize
flatten
update
activation : Activation function used by layers use_fast : if true program will use pylearn2 library for faster computation (Default Value = false)
activation
use_fast
layers : An Array contain size of hidden layers. activation : Activation function used by layers
Also See