.. _model.sgd: Stochastic Gradient Descent =========================== .. figure:: icons/stochastic-gradient.png Minimize an objective function using a stochastic approximation of gradient descent. Signals ------- **Inputs**: - **Data** A data set. - **Preprocessor** Preprocessing method(s) **Outputs**: - **Learner** A SGD learning algorithm with settings as specified in the dialog. - **Model** A trained model. Output signal sent only if input *Data* is present. Description ----------- The **Stochastic Gradient Descent** widget uses `stochastic gradient descent `_ that minimizes a chosen loss function with a linear function. The algorithm approximates a true gradient by considering one sample at a time, and simultaneously updates the model based on the gradient of the loss function. For regression, it returns predictors as minimizers of the sum, i.e. M-estimators, and is especially useful for large-scale and sparse data sets. .. figure:: images/StochasticGradientDescent-stamped.png :scale: 50 % 1. Specify the name of the model. The default name is "SGD". 2. Algorithm parameters. Classification loss function: - `Hinge `_ (linear SVM) - `Logistic Regression `_ (logistic regression SGD) - `Modified Huber `_ (smooth loss that brings tolerance to outliers as well as probability estimates) - *Squared Hinge* (quadratically penalized hinge) - `Perceptron `_ (linear loss used by the perceptron algorithm) - `Squared Loss `_ (fitted to ordinary least-squares) - `Huber `_ (switches to linear loss beyond ε) - `Epsilon insensitive `_ (ignores errors within ε, linear beyond it) - *Squared epsilon insensitive* (loss is squared beyond ε-region). Regression loss function: - `Squared Loss `_ (fitted to ordinary least-squares) - `Huber `_ (switches to linear loss beyond ε) - `Epsilon insensitive `_ (ignores errors within ε, linear beyond it) - *Squared epsilon insensitive* (loss is squared beyond ε-region). 3. Regularization norms to prevent overfitting: - None. - `Lasso (L1) `_ (L1, leading to sparse solutions) - `Ridge (L2) `_ (L2, standard regularizer) - `Elastic net `_ (mixing both penalty norms). Regularization strength defines how much regularization will be applied (the less we regularize, the more we allow the model to fit the data) and the mixing parameter what the ratio between L1 and L2 loss will be (if set to 0 then the loss is L2, if set to 1 then it is L1). 4. Learning parameters. - Learning rate: - *Constant*: learning rate stays the same through all epochs (passes) - `Optimal `_: a heuristic proposed by Leon Bottou - `Inverse scaling `_: earning rate is inversely related to the number of iterations - Initial learning rate. - Inverse scaling exponent: learning rate decay. - Number of iterations: the number of passes through the training data. - If *Shuffle data after each iteration* is on, the order of data instances is mixed after each pass. - If *Fixed seed for random shuffling* is on, the algorithm will use a fixed random seed and enable replicating the results. 7. Produce a report. 8. Press *Apply* to commit changes. Alternatively, tick the box on the left side of the *Apply* button and changes will be communicated automatically. Examples -------- For the classification task, we will use *iris* data set and test two models on it. We connected :doc:`Stochastic Gradient Descent <../model/stochasticgradient>` and :doc:`Tree <../model/tree>` to :doc:`Test & Score <../evaluation/testandscore>`. We also connected :doc:`File <../data/file>` to **Test & Score** and observed model performance in the widget. .. figure:: images/StochasticGradientDescent-classification.png For the regression task, we will compare three different models to see which predict what kind of results. For the purpose of this example, the *housing* data set is used. We connect the :doc:`File <../data/file>` widget to **Stochastic Gradient Descent**, :doc:`Linear Regression <../model/linearregression>` and :doc:`kNN <../model/knn>` widget and all four to the :doc:`Predictions <../evaluation/predictions>` widget. .. figure:: images/StochasticGradientDescent-regression.png