Class LibSVMAnomalyModel

java.lang.Object
org.tribuo.Model<T>
org.tribuo.common.libsvm.LibSVMModel<Event>
org.tribuo.anomaly.libsvm.LibSVMAnomalyModel
All Implemented Interfaces:
com.oracle.labs.mlrg.olcut.provenance.Provenancable<ModelProvenance>, Serializable

public class LibSVMAnomalyModel extends LibSVMModel<Event>
A anomaly detection model that uses an underlying libSVM model to make the predictions.

See:

 Chang CC, Lin CJ.
 "LIBSVM: a library for Support Vector Machines"
 ACM transactions on intelligent systems and technology (TIST), 2011.
 

and for the anomaly detection algorithm:

 Schölkopf B, Platt J, Shawe-Taylor J, Smola A J, Williamson R C.
 "Estimating the support of a high-dimensional distribution"
 Neural Computation, 2001, 1443-1471.
 
See Also:
  • Method Details

    • getNumberOfSupportVectors

      public int getNumberOfSupportVectors()
      Returns the number of support vectors.
      Returns:
      The number of support vectors.
    • predict

      public Prediction<Event> predict(Example<Event> example)
      Description copied from class: Model
      Uses the model to predict the output for a single example.

      predict does not mutate the example.

      Throws IllegalArgumentException if the example has no features or no feature overlap with the model.

      Specified by:
      predict in class Model<Event>
      Parameters:
      example - the example to predict.
      Returns:
      the result of the prediction.
    • copy

      protected LibSVMAnomalyModel copy(String newName, ModelProvenance newProvenance)
      Description copied from class: Model
      Copies a model, replacing its provenance and name with the supplied values.

      Used to provide the provenance removal functionality.

      Specified by:
      copy in class Model<Event>
      Parameters:
      newName - The new name.
      newProvenance - The new provenance.
      Returns:
      A copy of the model.