Packages

class RowTransformer extends Transformer[Row, Table]

RowTransformer transform a Row to a Table whose values are all Tensor.

This transformer is a container of RowTransformSchemas. When this transformer being executed, it will run transform methods of its RowTransformSchemas.

Output of RowTransformer is a Table. The keys of Table are Tensor.scalar(schemaKey)s of included RowTransformSchemas. Correspondingly, the values of Table are results(Tensor) of RowTransformSchema.transform.

Linear Supertypes
Transformer[Row, Table], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RowTransformer
  2. Transformer
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RowTransformer(schemas: Seq[RowTransformSchema], rowSize: Option[Int] = None)

    schemas

    schemas of transformer, whose keys should NOT be duplicated

    rowSize

    size of Row transformed by this transformer, default is None

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ->[C](other: Transformer[Table, C]): Transformer[Row, C]
    Definition Classes
    Transformer
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def apply(prev: Iterator[Row]): Iterator[Table]
    Definition Classes
    RowTransformerTransformer
  6. def apply(dataset: RDD[Row])(implicit evidence: ClassTag[Table]): RDD[Table]

    Apply this transformer to rdd

    Apply this transformer to rdd

    Definition Classes
    Transformer
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  9. def cloneTransformer(): Transformer[Row, Table]
    Definition Classes
    Transformer
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. val rowSize: Option[Int]
    Attributes
    protected
  20. val schemaMap: Map[String, RowTransformSchema]
    Attributes
    protected
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Transformer[Row, Table]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped