Packages

package ds

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class ArrayT(underlying: DataType) extends DataType with Product with Serializable

    A Array type.

    A Array type. Note: called ArrayT to make it distinguishable with Scala's Array.

  2. sealed trait DataType extends AnyRef

    Describes a single Datatype.

  3. sealed trait FundamentalType extends DataType

    Describes a fundamental type.

  4. case class Image(width: Int, height: Int, components: ListMap[ImageChannel, ImageComponent], format: ImageFormat = ImageFormat.Plain) extends DataType with Product with Serializable

    DataType for images.

  5. sealed trait ImageChannel extends AnyRef
  6. case class ImageComponent(componentType: FundamentalType) extends Product with Serializable

    Describe a single image component

  7. sealed trait ImageFormat extends AnyRef
  8. case class Nullable(underlying: DataType) extends DataType with Product with Serializable

    A Nullable DataType.

  9. case class Struct(fields: ListMap[String, DataType]) extends DataType with Product with Serializable

    A Tuple whose elements have names.

  10. case class TabularData(columns: ListMap[String, DataType]) extends DataType with Product with Serializable

    Tabular data, usually the root of the data.

  11. case class Tensor(componentType: FundamentalType, shape: Seq[Int]) extends DataType with Product with Serializable

    Data Type for Tensors

    Data Type for Tensors

    componentType

    underlying fundamental type (dtype in TensorFlow).

    shape

    shape of the Tensor. No support for varying shape yet.

Ungrouped