Enum Class TensorCategory

java.lang.Object
java.lang.Enum<TensorCategory>
com.linkedin.feathr.common.tensor.TensorCategory
All Implemented Interfaces:
Serializable, Comparable<TensorCategory>, Constable

public enum TensorCategory extends Enum<TensorCategory>
The category of the tensor type, such as dense, sparse, etc. NOTE: at the moment this is stored as is, and no additional validation is guaranteed (such as choosing the right tensor builder based on the tensor category).
  • Enum Constant Details

    • SPARSE

      public static final TensorCategory SPARSE
      Tensors of this category map some subset of the dimension space to values.
    • DENSE

      public static final TensorCategory DENSE
      Tensors of this category map the entire dimension space to values. This includes scalar values (which are modeled as dense tensors with 0 dimensions).
    • RAGGED

      public static final TensorCategory RAGGED
      More general than DENSE, this category relaxes the constraint that shape of every dimension is constant within a single data instance.
  • Method Details

    • values

      public static TensorCategory[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TensorCategory valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null