Class

com.amazonaws.services.sagemaker.sparksdk.protobuf

SageMakerProtobufWriter

Related Doc: package protobuf

Permalink

class SageMakerProtobufWriter extends OutputWriter

Writes rows of labeled vectors to Amazon protobuf Records encoded in RecordIO

By default, writes a label column of Doubles named "label" and a features column of Vector[Double]s named "features" to protobuf.

These column names can be reassigned with the option "labelColumnName" and "featuresColumnName".

To write records from a DataFrame in this file format, run dataframe.save .format("sagemaker") .option("labelColumnName", "myLabelColumn") .option("featuresColumnName", "myFeaturesColumn") .save("my_output_path")

See also

https://mxnet.incubator.apache.org/architecture/note_data_loading.html for more information on recordIO

https://aws.amazon.com/sagemaker/latest/dg/cdf-training.html/ for more information on the Amazon Record data format.

Linear Supertypes
OutputWriter, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SageMakerProtobufWriter
  2. OutputWriter
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SageMakerProtobufWriter(path: String, context: TaskAttemptContext, dataSchema: StructType, options: Map[String, String] = Map())

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def close(): Unit

    Permalink
    Definition Classes
    SageMakerProtobufWriter → OutputWriter
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. def write(row: Row): Unit

    Permalink

    Writes a row to an underlying RecordWriter

    Writes a row to an underlying RecordWriter

    row

    the Row to be written as Amazon Records.

  22. def write(row: InternalRow): Unit

    Permalink

    Writes a row to an underlying RecordWriter

    Writes a row to an underlying RecordWriter

    row

    the Row to be written as Amazon Records

    Definition Classes
    SageMakerProtobufWriter → OutputWriter

Inherited from OutputWriter

Inherited from AnyRef

Inherited from Any

Ungrouped