Uses of Class
org.tribuo.Excuse
Packages that use Excuse
Package
Description
Provides the core interfaces and classes for using Tribuo.
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 a classification linear model using Stochastic Gradient Descent.
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 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 simple baseline regression predictors.
Provides an interface to liblinear for regression problems.
Provides an implementation of decision trees for regression problems.
Provides an implementation of linear regression using Stochastic Gradient Descent.
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.tribuoMethods in org.tribuo that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.classification.baselineMethods in org.tribuo.classification.baseline that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.classification.liblinearMethods in org.tribuo.classification.liblinear that return ExcuseModifier 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.mnbMethods in org.tribuo.classification.mnb that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.classification.sgd.kernelMethods in org.tribuo.classification.sgd.kernel that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.classification.sgd.linearMethods in org.tribuo.classification.sgd.linear that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.clustering.kmeansMethods in org.tribuo.clustering.kmeans that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.common.liblinearMethods in org.tribuo.common.liblinear that return ExcuseModifier 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.Methods in org.tribuo.common.liblinear that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.common.libsvmMethods in org.tribuo.common.libsvm that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.common.nearestMethods in org.tribuo.common.nearest that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.common.treeMethods in org.tribuo.common.tree that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.common.xgboostMethods in org.tribuo.common.xgboost that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.ensembleSubclasses of Excuse in org.tribuo.ensembleModifier and TypeClassDescriptionclassEnsembleExcuse<T extends Output<T>>AnExcusewhich has a List of excuses for each of the ensemble members.Methods in org.tribuo.ensemble that return types with arguments of type ExcuseModifier and TypeMethodDescriptionEnsembleExcuse.getInnerExcuses()The individual ensemble member's excuses.Constructor parameters in org.tribuo.ensemble with type arguments of type Excuse
- 
Uses of Excuse in org.tribuo.interopMethods in org.tribuo.interop that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.interop.tensorflowMethods in org.tribuo.interop.tensorflow that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.multilabel.baselineMethods in org.tribuo.multilabel.baseline that return types with arguments of type ExcuseModifier and TypeMethodDescriptionIndependentMultiLabelModel.getExcuse(Example<MultiLabel> example) 
- 
Uses of Excuse in org.tribuo.regression.baselineMethods in org.tribuo.regression.baseline that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.regression.liblinearMethods in org.tribuo.regression.liblinear that return ExcuseModifier 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.rtreeMethods in org.tribuo.regression.rtree that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.regression.sgd.linearMethods in org.tribuo.regression.sgd.linear that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.regression.slmMethods in org.tribuo.regression.slm that return types with arguments of type Excuse
- 
Uses of Excuse in org.tribuo.transformMethods in org.tribuo.transform that return types with arguments of type Excuse