ml.combust.mleap.core

types

package types

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait BasicType extends Serializable

  2. sealed trait DataShape extends AnyRef

    Created by hollinwilkins on 6/30/17.

  3. sealed trait DataType extends Serializable

  4. case class DataTypeSpec(dt: DataType) extends TypeSpec with Product with Serializable

  5. case class ListShape(isNullable: Boolean = true) extends DataShape with Product with Serializable

  6. case class ListType(base: BasicType, isNullable: Boolean = true) extends DataType with Product with Serializable

  7. case class NodeShape(inputs: ListMap[String, Socket] = ..., outputs: ListMap[String, Socket] = ...) extends Product with Serializable

  8. case class ScalarShape(isNullable: Boolean = true) extends DataShape with Product with Serializable

  9. case class ScalarType(base: BasicType, isNullable: Boolean = true) extends DataType with Product with Serializable

  10. case class SchemaSpec(dts: Seq[DataType]) extends TypeSpec with Product with Serializable

  11. case class Socket(port: String, name: String) extends Product with Serializable

    Created by hollinwilkins on 7/3/17.

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

  13. case class StructType extends Serializable with Product

    Class for storing structured type information.

  14. case class TensorShape(dimensions: Option[Seq[Int]] = scala.None, isNullable: Boolean = true) extends DataShape with Product with Serializable

  15. case class TensorType(base: BasicType, dimensions: Option[Seq[Int]] = scala.None, isNullable: Boolean = true) extends DataType with Product with Serializable

    TensorType must have dimensions set before serializing to Bundle.

  16. sealed trait TypeSpec extends AnyRef

Value Members

  1. object BasicType extends Serializable

  2. object Casting

    Created by hollinwilkins on 9/1/17.

  3. object DataType extends Serializable

  4. object ListType extends Serializable

  5. object NodeShape extends Serializable

  6. object ScalarType extends Serializable

  7. object SchemaSpec extends Serializable

  8. object StructField extends Serializable

    Created by hwilkins on 10/23/15.

  9. object StructType extends Serializable

    Structured container (schema) for fields.

  10. object TensorShape extends Serializable

  11. object TensorType extends Serializable

  12. object TypeSpec

    Created by hollinwilkins on 7/4/17.

Ungrouped