File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,14 +15,23 @@ Each one contain a json object.`cnn` describes convolution layer configuration a
1515>> * ` poolsize ` : Dimension for Max-pooling
1616>> * ` flatten ` : whether to flatten output or not(true for last layer else false)
1717>> * ` update ` : true if weight need to updated during training.
18+ >> * ` activation ` : Activation function used by this layer, if not present global activation fuction is used.
1819
19- > * ` activation ` : Activation function used by layers
20+ > * ` activation ` : Activation function used by layers (global)
2021> * ` use_fast ` : if true program will use pylearn2 library for faster computation (Default Value = false)
2122
2223* ` mlp ` contains a json object with following parameters:
2324
24- > * ` layers ` : An Array contain size of hidden layers.
25- > * ` activation ` : Activation function used by layers
25+ > * ` layers ` : An Array contain size of hidden layers.
26+ > * ` adv_activation ` : if maxout/pnorm is used.
27+ >> * ` method ` : 'maxout','pnorm'.
28+ >> In ` maxout ` , a pooling of neuron o/p is done based on poolsize.
29+ >> But in ` pnorm ` output is normalized after pooling.
30+ >> * ` pool_size ` : pool size
31+ >> * ` pnorm_order ` : order of normalization (in pnorm)
32+
33+ > * ` activation ` : Activation function used by layers. (if adv_activation is used, it sholud be either 'linear','relu' or 'cappedrelu')
34+
2635
2736___________________________________________________________________________________
2837** Also See**
You can’t perform that action at this time.
0 commit comments