Uses of Interface
org.tribuo.ONNXExportable
Packages that use ONNXExportable
Package
Description
Provides an interface to LibLinear-java for classification problems.
Provides an interface to LibSVM for classification problems.
Provides an implementation of a classification factorization machine using Stochastic Gradient Descent.
Provides an implementation of a classification linear model using Stochastic Gradient Descent.
Provides an interface for model prediction combinations,
two base classes for ensemble models, a base class for
ensemble excuses, and a Bagging implementation.
Code for uploading models to Oracle Cloud Infrastructure Data Science, and also for scoring models deployed
in Oracle Cloud Infrastructure Data Science.
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 interface to liblinear for regression problems.
Provides an interface to LibSVM 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.
-
Uses of ONNXExportable in org.tribuo.classification.liblinear
Classes in org.tribuo.classification.liblinear that implement ONNXExportableModifier and TypeClassDescriptionclass
AModel
which wraps a LibLinear-java classification model. -
Uses of ONNXExportable in org.tribuo.classification.libsvm
Classes in org.tribuo.classification.libsvm that implement ONNXExportableModifier and TypeClassDescriptionclass
A classification model that uses an underlying LibSVM model to make the predictions. -
Uses of ONNXExportable in org.tribuo.classification.sgd.fm
Classes in org.tribuo.classification.sgd.fm that implement ONNXExportableModifier and TypeClassDescriptionclass
The inference time version of a factorization machine trained using SGD. -
Uses of ONNXExportable in org.tribuo.classification.sgd.linear
Classes in org.tribuo.classification.sgd.linear that implement ONNXExportableModifier and TypeClassDescriptionclass
The inference time version of a linear model trained using SGD. -
Uses of ONNXExportable in org.tribuo.ensemble
Classes in org.tribuo.ensemble that implement ONNXExportableModifier and TypeClassDescriptionfinal class
WeightedEnsembleModel<T extends Output<T>>
An ensemble model that uses weights to combine the ensemble member predictions. -
Uses of ONNXExportable in org.tribuo.interop.oci
Methods in org.tribuo.interop.oci with type parameters of type ONNXExportableModifier and TypeMethodDescriptionstatic <T extends Output<T>,
U extends Model<T> & ONNXExportable>
StringOCIUtil.createModel
(U model, com.oracle.bmc.datascience.DataScienceClient client, com.fasterxml.jackson.databind.ObjectMapper mapper, OCIUtil.OCIModelArtifactConfig config) Creates an OCI DS model and uploads the model artifact. -
Uses of ONNXExportable in org.tribuo.multilabel.sgd.fm
Classes in org.tribuo.multilabel.sgd.fm that implement ONNXExportableModifier and TypeClassDescriptionclass
The inference time version of a multi-label factorization machine trained using SGD. -
Uses of ONNXExportable in org.tribuo.multilabel.sgd.linear
Classes in org.tribuo.multilabel.sgd.linear that implement ONNXExportableModifier and TypeClassDescriptionclass
The inference time version of a multi-label linear model trained using SGD. -
Uses of ONNXExportable in org.tribuo.regression.liblinear
Classes in org.tribuo.regression.liblinear that implement ONNXExportable -
Uses of ONNXExportable in org.tribuo.regression.libsvm
Classes in org.tribuo.regression.libsvm that implement ONNXExportableModifier and TypeClassDescriptionclass
A regression model that uses an underlying libSVM model to make the predictions. -
Uses of ONNXExportable in org.tribuo.regression.sgd.fm
Classes in org.tribuo.regression.sgd.fm that implement ONNXExportableModifier and TypeClassDescriptionclass
The inference time model of a regression factorization machine trained using SGD. -
Uses of ONNXExportable in org.tribuo.regression.sgd.linear
Classes in org.tribuo.regression.sgd.linear that implement ONNXExportableModifier and TypeClassDescriptionclass
The inference time version of a linear model trained using SGD. -
Uses of ONNXExportable in org.tribuo.regression.slm
Classes in org.tribuo.regression.slm that implement ONNXExportableModifier and TypeClassDescriptionclass
The inference time version of a sparse linear regression model.