Description Usage Arguments Examples
Create setting for neural network model with python
1 2 3 4 5 6 7 8 9 10 11 12 |
size |
The number of hidden nodes |
alpha |
The l2 regularisation |
maxIter |
Maximum number of iterations. The solver iterates until convergence (determined by ‘tol’) or this number of iterations. |
tol |
Tolerance for the optimization |
learningRateInit |
The initial learning rate used. It controls the step-size in updating the weights. |
nIterNoChange |
Maximum number of epochs to not meet tol improvement. |
beta1 |
Exponential decay rate for estimates of first moment vector in adam, should be in [0, 1). |
beta2 |
Exponential decay rate for estimates of second moment vector in adam, should be in [0, 1). |
epsilon |
Value for numerical stability in adam. |
seed |
A seed for the model |
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.