Skip to content

Commit 48d8584

Browse files
authored
Merge pull request #2808 from ajdapretnar/small-doc-fix
Small doc fix for NN
2 parents ae8c67d + 9f02e5c commit 48d8584

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/visual-programming/source/widgets/model/neuralnetwork.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Neural Network
22
==============
33

4-
.. figure:: icons/nn.png
4+
.. figure:: icons/neural-network.png
55

66
A multi-layer perceptron (MLP) algorithm with backpropagation.
77

@@ -38,13 +38,16 @@ The **Neural Network** widget uses sklearn's `Multi\-layer Perceptron algorithm
3838
1. A name under which it will appear in other widgets. The default name is
3939
"Neural Network".
4040
2. Set model parameters:
41+
4142
- Neurons per hidden layer: defined as the ith element represents the number of neurons in the ith hidden layer. E.g. a neural network with 3 layers can be defined as 2, 3, 2.
4243
- Activation function for the hidden layer:
44+
4345
- Identity: no-op activation, useful to implement linear bottleneck
4446
- Logistic: the logistic sigmoid function
4547
- tanh: the hyperbolic tan function
4648
- ReLu: the rectified linear unit function
4749
- Solver for weight optimization:
50+
4851
- L-BFGS-B: an optimizer in the family of quasi-Newton methods
4952
- SGD: stochastic gradient descent
5053
- Adam: stochastic gradient-based optimizer

0 commit comments

Comments
 (0)