Skip to content

Commit aaba12d

Browse files
committed
Update CNN_Specification.md
1 parent 651de40 commit aaba12d

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

config_doc/CNN_Specification.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff 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**

0 commit comments

Comments
 (0)