Uses of Interface
org.tribuo.WeightedExamples
Packages that use 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
Classes in org.tribuo.classification.dtree that implement WeightedExamplesModifier and TypeClassDescriptionclassATrainerthat uses an approximation of the CART algorithm to build a decision tree. -
Uses of WeightedExamples in org.tribuo.classification.mnb
Classes in org.tribuo.classification.mnb that implement WeightedExamplesModifier and TypeClassDescriptionclassATrainerwhich trains a multinomial Naive Bayes model with Laplace smoothing. -
Uses of WeightedExamples in org.tribuo.classification.sgd.crf
Classes in org.tribuo.classification.sgd.crf that implement WeightedExamples -
Uses of WeightedExamples in org.tribuo.classification.sgd.fm
Classes in org.tribuo.classification.sgd.fm that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a classification factorization machine using SGD. -
Uses of WeightedExamples in org.tribuo.classification.sgd.kernel
Classes in org.tribuo.classification.sgd.kernel that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a kernelised model using the Pegasos optimiser. -
Uses of WeightedExamples in org.tribuo.classification.sgd.linear
Classes in org.tribuo.classification.sgd.linear that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a linear classifier using SGD.classA logistic regression trainer that uses a reasonable objective, optimiser, number of epochs and minibatch size. -
Uses of WeightedExamples in org.tribuo.classification.xgboost
Classes in org.tribuo.classification.xgboost that implement WeightedExamplesModifier and TypeClassDescriptionfinal classATrainerwhich wraps the XGBoost training procedure. -
Uses of WeightedExamples in org.tribuo.common.sgd
Classes in org.tribuo.common.sgd that implement WeightedExamplesModifier and TypeClassDescriptionclassAbstractFMTrainer<T extends Output<T>, U, V extends AbstractFMModel<T>>A trainer for a quadratic factorization machine model which uses SGD.classAbstractLinearSGDTrainer<T extends Output<T>, U, V extends AbstractLinearSGDModel<T>>A trainer for a linear model which uses SGD.classAbstractSGDTrainer<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
Subinterfaces of WeightedExamples in org.tribuo.common.treeModifier and TypeInterfaceDescriptioninterfaceDecisionTreeTrainer<T extends Output<T>>A tag interface for aTrainerso the random forests trainer can check if it's actually a tree.Classes in org.tribuo.common.tree that implement WeightedExamplesModifier and TypeClassDescriptionclassAbstractCARTTrainer<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
Classes in org.tribuo.common.xgboost that implement WeightedExamplesModifier and TypeClassDescriptionclassXGBoostTrainer<T extends Output<T>>ATrainerwhich wraps the XGBoost training procedure. -
Uses of WeightedExamples in org.tribuo.multilabel.sgd.fm
Classes in org.tribuo.multilabel.sgd.fm that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a multi-label classification factorization machine using SGD. -
Uses of WeightedExamples in org.tribuo.multilabel.sgd.linear
Classes in org.tribuo.multilabel.sgd.linear that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a multi-label linear model which uses SGD. -
Uses of WeightedExamples in org.tribuo.regression.rtree
Classes in org.tribuo.regression.rtree that implement WeightedExamples -
Uses of WeightedExamples in org.tribuo.regression.sgd.fm
Classes in org.tribuo.regression.sgd.fm that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a regression factorization machine using SGD. -
Uses of WeightedExamples in org.tribuo.regression.sgd.linear
Classes in org.tribuo.regression.sgd.linear that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a linear regression model which uses SGD. -
Uses of WeightedExamples in org.tribuo.regression.slm
Classes in org.tribuo.regression.slm that implement WeightedExamplesModifier and TypeClassDescriptionclassA trainer for a lasso linear regression model which uses LARS to construct the model.classA trainer for a linear regression model which uses least angle regression.classA trainer for a sparse linear regression model. -
Uses of WeightedExamples in org.tribuo.regression.xgboost
Classes in org.tribuo.regression.xgboost that implement WeightedExamplesModifier and TypeClassDescriptionfinal classATrainerwhich wraps the XGBoost training procedure.