Interface Observation

  • All Known Implementing Classes:
    DefaultObservation

    public interface Observation
    An observation is some data point which can be classified.
    Author:
    Matthias Thimm
    • Method Summary

      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      int hashCode()  
      libsvm.svm_node[] toSvmNode()
      Returns the svm_node (the data model of libsvm) representation of this observation.
    • Method Detail

      • hashCode

        int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toSvmNode

        libsvm.svm_node[] toSvmNode()
        Returns the svm_node (the data model of libsvm) representation of this observation.
        Returns:
        an array of svm_node.