Uses of Interface
org.tribuo.classification.ClassificationOptions
Package
Description
Provides implementations of decision trees for classification problems.
Provides a set of main methods for interacting with classification tasks.
Provides an interface to LibLinear-java for classification problems.
Provides an interface to LibSVM for classification problems.
Provides an implementation of multinomial naive bayes (i.e., naive bayes for non-negative count data).
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 a K-Nearest Neighbours implementation which works across
all Tribuo
Output
types.-
Uses of ClassificationOptions in org.tribuo.classification.dtree
Modifier and TypeClassDescriptionclass
Options for building a classification tree trainer. -
Uses of ClassificationOptions in org.tribuo.classification.experiments
Modifier and TypeClassDescriptionclass
Aggregates all the classification algorithms. -
Uses of ClassificationOptions in org.tribuo.classification.liblinear
Modifier and TypeClassDescriptionclass
Command line options for working with a classification liblinear model. -
Uses of ClassificationOptions in org.tribuo.classification.libsvm
Modifier and TypeClassDescriptionclass
CLI options for training a LibSVM classification model. -
Uses of ClassificationOptions in org.tribuo.classification.mnb
Modifier and TypeClassDescriptionclass
CLI options for a multinomial naive bayes model. -
Uses of ClassificationOptions in org.tribuo.classification.sgd.fm
Modifier and TypeClassDescriptionclass
CLI options for training a factorization machine classifier. -
Uses of ClassificationOptions in org.tribuo.classification.sgd.kernel
-
Uses of ClassificationOptions in org.tribuo.classification.sgd.linear
Modifier and TypeClassDescriptionclass
CLI options for training a linear classifier. -
Uses of ClassificationOptions in org.tribuo.classification.xgboost
Modifier and TypeClassDescriptionclass
CLI options for training an XGBoost classifier. -
Uses of ClassificationOptions in org.tribuo.common.nearest
Modifier and TypeClassDescriptionclass
CLI Options for training a k-nearest neighbour predictor.