Input
ExecutionExecution trigger that begins regression training
AI/ML/Regression
Fit/Train a penalized linear regression model. Ridge shrinks all coefficients, Lasso drives irrelevant ones to exactly zero (feature selection), Elastic Net mixes both.
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Execution trigger that begins regression training
Choose which backend supplies the training data
Ridge = pure L2 (keeps all features, handles correlated ones well), Lasso = pure L1 (zeroes out weak features), ElasticNet = a blend controlled by L1 Ratio
Overall regularization strength. 0 means ordinary least squares, larger values shrink the coefficients harder.
Share of the penalty spent on L1 vs L2. Only used when Penalty Type is ElasticNet; Ridge forces 0.0 and Lasso forces 1.0.
Fit a bias term. Disable only when the data is already centered.
Upper bound on coordinate descent passes. The solver stops silently at this cap, so a convergence warning is logged when it is hit.
Convergence tolerance for coordinate descent. Smaller values give a tighter fit at the cost of more iterations.
Activated once training completes
Thread-safe handle to the trained penalized regression model
Fitted coefficients and intercept. With Lasso, coefficients that are exactly zero mark features the model discarded.
Feature coefficients (one per input dimension)
The y-intercept (bias term)
Number of input features