Uses of Class
org.tribuo.common.sgd.AbstractLinearSGDModel
Package
Description
Provides an implementation of a classification linear model using Stochastic Gradient Descent.
Provides the base classes for models trained with stochastic gradient descent.
Provides an implementation of a multi-label classification linear model using Stochastic Gradient Descent.
Provides an implementation of linear regression using Stochastic Gradient Descent.
-
Uses of AbstractLinearSGDModel in org.tribuo.classification.sgd.linear
Modifier and TypeClassDescriptionclass
The inference time version of a linear model trained using SGD. -
Uses of AbstractLinearSGDModel in org.tribuo.common.sgd
Modifier and TypeClassDescriptionclass
AbstractLinearSGDTrainer<T extends Output<T>,
U, V extends AbstractLinearSGDModel<T>> A trainer for a linear model which uses SGD. -
Uses of AbstractLinearSGDModel in org.tribuo.multilabel.sgd.linear
Modifier and TypeClassDescriptionclass
The inference time version of a multi-label linear model trained using SGD. -
Uses of AbstractLinearSGDModel in org.tribuo.regression.sgd.linear
Modifier and TypeClassDescriptionclass
The inference time version of a linear model trained using SGD.