Uses of Interface
org.tribuo.WeightedExamples
Package
Description
Provides implementations of decision trees for classification problems.
Provides an implementation of multinomial naive bayes (i.e., naive bayes for non-negative count data).
Provides an implementation of a linear chain CRF trained using Stochastic Gradient Descent.
Provides an implementation of a classification factorization machine using Stochastic Gradient Descent.
Provides a SGD implementation of a Kernel SVM using the Pegasos algorithm.
Provides an implementation of a classification linear model using Stochastic Gradient Descent.
Provides an interface to XGBoost for classification problems.
Provides the base classes for models trained with stochastic gradient descent.
Provides common functionality for building decision trees, irrespective
of the predicted
Output
.Provides abstract classes for interfacing with XGBoost abstracting away all the
Output
dependent parts.Provides an implementation of a multi-label classification factorization machine model using Stochastic Gradient Descent.
Provides an implementation of a multi-label classification linear model using Stochastic Gradient Descent.
Provides an implementation of decision trees for regression problems.
Provides an implementation of factorization machines for regression using Stochastic Gradient Descent.
Provides an implementation of linear regression using Stochastic Gradient Descent.
Provides implementations of sparse linear regression using various forms of regularisation penalty.
Provides an interface to XGBoost for regression problems.
-
Uses of WeightedExamples in org.tribuo.classification.dtree
Modifier and TypeClassDescriptionclass
ATrainer
that uses an approximation of the CART algorithm to build a decision tree. -
Uses of WeightedExamples in org.tribuo.classification.mnb
Modifier and TypeClassDescriptionclass
ATrainer
which trains a multinomial Naive Bayes model with Laplace smoothing. -
Uses of WeightedExamples in org.tribuo.classification.sgd.crf
-
Uses of WeightedExamples in org.tribuo.classification.sgd.fm
Modifier and TypeClassDescriptionclass
A trainer for a classification factorization machine using SGD. -
Uses of WeightedExamples in org.tribuo.classification.sgd.kernel
Modifier and TypeClassDescriptionclass
A trainer for a kernelised model using the Pegasos optimiser. -
Uses of WeightedExamples in org.tribuo.classification.sgd.linear
Modifier and TypeClassDescriptionclass
A trainer for a linear classifier using SGD.class
A logistic regression trainer that uses a reasonable objective, optimiser, number of epochs and minibatch size. -
Uses of WeightedExamples in org.tribuo.classification.xgboost
Modifier and TypeClassDescriptionfinal class
ATrainer
which wraps the XGBoost training procedure. -
Uses of WeightedExamples in org.tribuo.common.sgd
Modifier and TypeClassDescriptionclass
AbstractFMTrainer<T extends Output<T>,
U, V extends AbstractFMModel<T>> A trainer for a quadratic factorization machine model which uses SGD.class
AbstractLinearSGDTrainer<T extends Output<T>,
U, V extends AbstractLinearSGDModel<T>> A trainer for a linear model which uses SGD.class
AbstractSGDTrainer<T extends Output<T>,
U, V extends Model<T>, X extends FeedForwardParameters> A trainer for a model which uses SGD. -
Uses of WeightedExamples in org.tribuo.common.tree
Modifier and TypeInterfaceDescriptioninterface
DecisionTreeTrainer<T extends Output<T>>
A tag interface for aTrainer
so the random forests trainer can check if it's actually a tree.Modifier and TypeClassDescriptionclass
AbstractCARTTrainer<T extends Output<T>>
Base class forTrainer
's that use an approximation of the CART algorithm to build a decision tree. -
Uses of WeightedExamples in org.tribuo.common.xgboost
Modifier and TypeClassDescriptionclass
XGBoostTrainer<T extends Output<T>>
ATrainer
which wraps the XGBoost training procedure. -
Uses of WeightedExamples in org.tribuo.multilabel.sgd.fm
Modifier and TypeClassDescriptionclass
A trainer for a multi-label classification factorization machine using SGD. -
Uses of WeightedExamples in org.tribuo.multilabel.sgd.linear
Modifier and TypeClassDescriptionclass
A trainer for a multi-label linear model which uses SGD. -
Uses of WeightedExamples in org.tribuo.regression.rtree
-
Uses of WeightedExamples in org.tribuo.regression.sgd.fm
Modifier and TypeClassDescriptionclass
A trainer for a regression factorization machine using SGD. -
Uses of WeightedExamples in org.tribuo.regression.sgd.linear
Modifier and TypeClassDescriptionclass
A trainer for a linear regression model which uses SGD. -
Uses of WeightedExamples in org.tribuo.regression.slm
Modifier and TypeClassDescriptionclass
A trainer for a lasso linear regression model which uses LARS to construct the model.class
A trainer for a linear regression model which uses least angle regression.class
A trainer for a sparse linear regression model. -
Uses of WeightedExamples in org.tribuo.regression.xgboost
Modifier and TypeClassDescriptionfinal class
ATrainer
which wraps the XGBoost training procedure.