Class FMClassificationModel
- All Implemented Interfaces:
com.oracle.labs.mlrg.olcut.provenance.Provenancable<ModelProvenance>,Serializable,ONNXExportable
The inference time version of a factorization machine trained using SGD.
See:
Rendle, S. Factorization machines. 2010 IEEE International Conference on Data Mining
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.tribuo.common.sgd.AbstractSGDModel
AbstractSGDModel.PredAndActive -
Field Summary
Fields inherited from class org.tribuo.common.sgd.AbstractSGDModel
addBias, modelParametersFields inherited from class org.tribuo.Model
ALL_OUTPUTS, BIAS_FEATURE, featureIDMap, generatesProbabilities, name, outputIDInfo, provenance, provenanceOutputFields inherited from interface org.tribuo.ONNXExportable
PROVENANCE_METADATA_FIELD, SERIALIZER -
Method Summary
Modifier and TypeMethodDescriptionprotected FMClassificationModelcopy(String newName, ModelProvenance newProvenance) Copies a model, replacing its provenance and name with the supplied values.protected StringgetDimensionName(int index) Gets the name of the indexed output dimension.protected Stringprotected ONNXNodeonnxOutput(ONNXNode input) Takes the unnormalized ONNX output of this model and applies an appropriate normalizer from the concrete class.Uses the model to predict the output for a single example.Methods inherited from class org.tribuo.common.sgd.AbstractFMModel
exportONNXModel, getBiasesCopy, getExcuse, getFactorsCopy, getLinearWeightsCopy, getTopFeatures, writeONNXGraphMethods inherited from class org.tribuo.common.sgd.AbstractSGDModel
getModelParameters, predictSingleMethods inherited from class org.tribuo.Model
castModel, copy, generatesProbabilities, getExcuses, getFeatureIDMap, getName, getOutputIDInfo, getProvenance, innerPredict, predict, predict, setName, toString, validateMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.tribuo.ONNXExportable
exportONNXModel, saveONNXModel, serializeProvenance, writeONNXGraph
-
Method Details
-
predict
Description copied from class:ModelUses the model to predict the output for a single example.predict does not mutate the example.
Throws
IllegalArgumentExceptionif the example has no features or no feature overlap with the model. -
copy
Description copied from class:ModelCopies a model, replacing its provenance and name with the supplied values.Used to provide the provenance removal functionality.
-
getDimensionName
Description copied from class:AbstractFMModelGets the name of the indexed output dimension.- Specified by:
getDimensionNamein classAbstractFMModel<Label>- Parameters:
index- The output dimension index.- Returns:
- The name of the requested output dimension.
-
onnxModelName
- Specified by:
onnxModelNamein classAbstractFMModel<Label>- Returns:
- Name to write into the ONNX Model.
-
onnxOutput
Description copied from class:AbstractFMModelTakes the unnormalized ONNX output of this model and applies an appropriate normalizer from the concrete class.- Specified by:
onnxOutputin classAbstractFMModel<Label>- Parameters:
input- Unnormalized ONNX leaf node.- Returns:
- Normalized ONNX leaf node.
-