Class MLFeatureType


  • public final class MLFeatureType
    extends java.lang.Object
    Supported data type enumeration
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Dictionary
      Numerically weighted hashable objects (e.g. word counts)
      static long Double
      Continuous values
      static long Image
      CVPixelBufferRef
      static long Int64
      Discrete values, sometimes used to hold numeric encoding of a categorical value
      static long Invalid  
      static long MultiArray
      MLMultiArray
      static long Sequence
      MLSequence.
      static long String
      Text or categorical strings
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Int64

        public static final long Int64
        Discrete values, sometimes used to hold numeric encoding of a categorical value
        See Also:
        Constant Field Values
      • Dictionary

        public static final long Dictionary
        Numerically weighted hashable objects (e.g. word counts)
        See Also:
        Constant Field Values
      • Sequence

        public static final long Sequence
        MLSequence. Ordered collection of feature values with the same type
        See Also:
        Constant Field Values