Field | Description | Remark |
Run | It allows you to run the node. | - |
Explore | It allows you to explore the successfully executed node. | - |
Vertical Ellipses | The available options are - Run till node
- Run from node
- Publish as a model
- Publish code
| - |
Task Name | It displays the name of the selected task. | You can click the text field to modify the task name as required. |
Dependant Variable | It allows you to select the dependent variable. | You can select only one variable, and it should be of Numeric type. |
Independent Variable | It allows you to select the independent variable | You can choose more than one variable. You can select between Categorical and Numerical variables. Not any type only categorical and numerical. Because users consider all types try to run with text, geographical, and time series variables |
Advanced
| Learning_rate | It allows you to select the constant, in-scaling, or adaptive learning rate. | It is a hyperparameter that controls the step size at which the weights and biases of the network are updated during the training process. |
Learning_rate_init | It allows you to enter the learning rate value. | It refers to the initial learning rate used at the beginning of the training process. |
Hidden Layer Sizes | It allows you to enter the number of hidden layers. | It refers to the number of neurons or units in each hidden layer of the network. |
Activation | It allows us to choose no-op, logistic sigmoid, hyperbolic tan, and rectified linear unit functions. | It is a mathematical function applied to the weighted sum of the inputs to each neuron in a hidden layer or the output layer. |
Solver | It allows us to choose lbfgs, sgd, and adam.
| It refers to the optimization algorithm used to update the weights and biases of the network during the training process. |
Maximum Iterations | It allows us to enter the number of iterations.
The default value is 200. | It refers to the maximum number of iterations or epochs that the training process will run. |
Random State | It allows us to enter the number of random states we want.
The default value is 0. | It is a parameter that controls the random initialization of the network's weight and biases. |
Power_t | It allows us to select the power level.
The default value is 0.5. | It determines the convergence criterion for the optimization algorithm. |
Dimensionality Reduction | It allows you to select between None and PCA. | It to the process of reducing the number of input features or variables in a dataset while preserving the important information and patterns present in the data. |