Uses of Class
org.tribuo.Excuse
Package
Description
Provides the core interfaces and classes for using Tribuo.
Provides an interface to LibLinear-java for anomaly detection problems.
Provides simple baseline multiclass classifiers.
Provides an interface to LibLinear-java for classification problems.
Provides an implementation of multinomial naive bayes (i.e., naive bayes for non-negative count data).
Provides a SGD implementation of a Kernel SVM using the Pegasos algorithm.
Provides an implementation of HDBSCAN*.
Provides a multithreaded implementation of K-Means, with a
configurable distance function.
Provides base classes for using liblinear from Tribuo.
The base interface to LibSVM.
Provides a K-Nearest Neighbours implementation which works across
all Tribuo
Output
types.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 interface for model prediction combinations,
two base classes for ensemble models, a base class for
ensemble excuses, and a Bagging implementation.
This package contains the abstract implementation of an external model
trained by something outside of Tribuo.
Provides an interface to TensorFlow, allowing the training of non-sequential models using any supported
Tribuo output type.
Provides implementations of binary relevance based multi-label classification
algorithms.
Provides simple baseline regression predictors.
Provides an interface to liblinear for regression problems.
Provides an implementation of decision trees for regression problems.
Provides implementations of sparse linear regression using various forms of regularisation penalty.
Provides infrastructure for applying transformations to a
Dataset
.-
Uses of Excuse in org.tribuo
-
Uses of Excuse in org.tribuo.anomaly.liblinear
Modifier and TypeMethodDescriptionLibLinearAnomalyModel.innerGetExcuse
(Example<Event> e, double[][] allFeatureWeights) The call to model.getFeatureWeights in the public methods copies the weights array so this inner method exists to save the copy in getExcuses. -
Uses of Excuse in org.tribuo.classification.baseline
-
Uses of Excuse in org.tribuo.classification.liblinear
Modifier and TypeMethodDescriptionLibLinearClassificationModel.innerGetExcuse
(Example<Label> e, double[][] allFeatureWeights) The call to model.getFeatureWeights in the public methods copies the weights array so this inner method exists to save the copy in getExcuses. -
Uses of Excuse in org.tribuo.classification.mnb
-
Uses of Excuse in org.tribuo.classification.sgd.kernel
-
Uses of Excuse in org.tribuo.clustering.hdbscan
-
Uses of Excuse in org.tribuo.clustering.kmeans
-
Uses of Excuse in org.tribuo.common.liblinear
Modifier and TypeMethodDescriptionLibLinearModel.innerGetExcuse
(Example<T> e, double[][] featureWeights) The call to getFeatureWeights in the public methods copies the weights array so this inner method exists to save the copy in getExcuses. -
Uses of Excuse in org.tribuo.common.libsvm
-
Uses of Excuse in org.tribuo.common.nearest
-
Uses of Excuse in org.tribuo.common.sgd
-
Uses of Excuse in org.tribuo.common.tree
-
Uses of Excuse in org.tribuo.common.xgboost
-
Uses of Excuse in org.tribuo.ensemble
Modifier and TypeClassDescriptionclass
EnsembleExcuse<T extends Output<T>>
AnExcuse
which has a List of excuses for each of the ensemble members.Modifier and TypeMethodDescriptionEnsembleExcuse.getInnerExcuses()
The individual ensemble member's excuses.ModifierConstructorDescriptionEnsembleExcuse
(Example<T> example, Prediction<T> prediction, Map<String, List<com.oracle.labs.mlrg.olcut.util.Pair<String, Double>>> weights, List<Excuse<T>> innerExcuses) Constructs an ensemble excuse, comprising the excuses from each ensemble member, along with the feature weights. -
Uses of Excuse in org.tribuo.interop
-
Uses of Excuse in org.tribuo.interop.tensorflow
-
Uses of Excuse in org.tribuo.multilabel.baseline
Modifier and TypeMethodDescriptionClassifierChainModel.getExcuse
(Example<MultiLabel> example) IndependentMultiLabelModel.getExcuse
(Example<MultiLabel> example) -
Uses of Excuse in org.tribuo.regression.baseline
-
Uses of Excuse in org.tribuo.regression.liblinear
Modifier and TypeMethodDescriptionLibLinearRegressionModel.innerGetExcuse
(Example<Regressor> e, double[][] allFeatureWeights) The call to model.getFeatureWeights in the public methods copies the weights array so this inner method exists to save the copy in getExcuses. -
Uses of Excuse in org.tribuo.regression.rtree
-
Uses of Excuse in org.tribuo.regression.slm
-
Uses of Excuse in org.tribuo.transform