Package

ml.combust.mleap.runtime

types

Permalink

package types

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait BasicType extends DataType with Serializable

    Permalink
  2. sealed trait DataType extends Serializable

    Permalink

    Created by hwilkins on 10/23/15.

  3. case class ListType(base: DataType) extends DataType with Product with Serializable

    Permalink
  4. case class StructField(name: String, dataType: DataType) extends Serializable with Product

    Permalink

    Created by hwilkins on 10/23/15.

  5. case class StructType extends Serializable with Product

    Permalink

    Class for storing structured type information.

    Class for storing structured type information.

    This class is primarily used to define the schema of a ml.combust.mleap.runtime.LeapFrame. In the future, it could be used to define the structure of fields stored in the LeapFrame itself.

  6. case class TensorType(base: BasicType, dimensions: Seq[Int]) extends DataType with Product with Serializable

    Permalink

Value Members

  1. object BooleanType extends BasicType

    Permalink
  2. object DoubleType extends BasicType

    Permalink
  3. object LongType extends BasicType

    Permalink
  4. object StringType extends BasicType

    Permalink
  5. object StructType extends Serializable

    Permalink

    Structured container (schema) for fields.

    Structured container (schema) for fields. Operations include select, withField, and dropField.

  6. object TensorType extends Serializable

    Permalink

Ungrouped