You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nn.testing =0; % Internal variable. nntest sets this to one.
17
-
nn.output ='sigm'; % output unit 'sigm' (=logistic), 'softmax' and 'linear'
9
+
nn.normalize_input =1; % normalize input elements to be between [-1 1]. Note: use a linear output function if training auto-encoders with normalized inputs
10
+
nn.activation_function ='tanh_opt'; % Activation functions of hidden layers: 'sigm' (sigmoid) or 'tanh_opt' (optimal tanh).
11
+
nn.learningRate =2; % learning rate Note: typically needs to be lower when using 'sigm' activation function and non-normalized inputs.
12
+
nn.momentum =0.5; % Momentum
13
+
nn.weightPenaltyL2 =0; % L2 regularization
14
+
nn.nonSparsityPenalty =0; % Non sparsity penalty
15
+
nn.sparsityTarget =0.05; % Sparsity target
16
+
nn.inputZeroMaskedFraction =0; % Used for Denoising AutoEncoders
Copy file name to clipboardExpand all lines: README.md
+39-18Lines changed: 39 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,14 @@ For a more informal introduction, see the following videos by Geoffrey Hinton an
15
15
*[Recent Developments in Deep Learning](http://www.youtube.com/watch?v=VdIURAu1-aU) (Hinton, 2010)
16
16
*[Unsupervised Feature Learning and Deep Learning](http://www.youtube.com/watch?v=ZmNOAtZIgIk) (Ng, 2011)
17
17
18
-
If you use this toolbox in your research please cite:
18
+
If you use this toolbox in your research please cite[Prediction as a candidate for learning deep hierarchical models of data](http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=6284)
19
19
20
-
[Prediction as a candidate for learning deep hierarchical models of data](http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=6284) (Palm, 2012)
20
+
```
21
+
@MASTERSTHESIS\{IMM2012-06284,
22
+
author = "R. B. Palm",
23
+
title = "Prediction as a candidate for learning deep hierarchical models of data",
Copy file name to clipboardExpand all lines: README_header.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,14 @@ For a more informal introduction, see the following videos by Geoffrey Hinton an
14
14
*[Recent Developments in Deep Learning](http://www.youtube.com/watch?v=VdIURAu1-aU) (Hinton, 2010)
15
15
*[Unsupervised Feature Learning and Deep Learning](http://www.youtube.com/watch?v=ZmNOAtZIgIk) (Ng, 2011)
16
16
17
-
If you use this toolbox in your research please cite:
18
-
19
-
[Prediction as a candidate for learning deep hierarchical models of data](http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=6284) (Palm, 2012)
17
+
If you use this toolbox in your research please cite [Prediction as a candidate for learning deep hierarchical models of data](http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=6284)
18
+
19
+
```
20
+
@MASTERSTHESIS\{IMM2012-06284,
21
+
author = "R. B. Palm",
22
+
title = "Prediction as a candidate for learning deep hierarchical models of data",
0 commit comments