Class

com.salesforce.op.stages.impl.feature

OpTextPivotVectorizer

Related Doc: package feature

Permalink

class OpTextPivotVectorizer[T <: Text] extends OpOneHotVectorizer[T]

Converts a sequence of Text features into a vector keeping the top K most common occurrences of each feature (ie the final vector has length K * number of inputs). Plus an additional column for "other" values - which will capture values that do not make the cut or values not seen in training, and an additional column for empty values unless null tracking is disabled.

Linear Supertypes
OpOneHotVectorizer[T], MaxPctCardinalityParams, OneHotFun, UniqueCountFun, MinSupportParam, TrackNullsParam, SaveOthersParams, CleanTextFun, PivotParams, TextParams, SequenceEstimator[T, OPVector], OpPipelineStageN[T, OPVector], HasOut[OPVector], HasInN, OpPipelineStage[OPVector], OpPipelineStageBase, MLWritable, OpPipelineStageParams, InputParams, Estimator[SequenceModel[T, OPVector]], PipelineStage, Logging, Params, Serializable, Serializable, Identifiable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OpTextPivotVectorizer
  2. OpOneHotVectorizer
  3. MaxPctCardinalityParams
  4. OneHotFun
  5. UniqueCountFun
  6. MinSupportParam
  7. TrackNullsParam
  8. SaveOthersParams
  9. CleanTextFun
  10. PivotParams
  11. TextParams
  12. SequenceEstimator
  13. OpPipelineStageN
  14. HasOut
  15. HasInN
  16. OpPipelineStage
  17. OpPipelineStageBase
  18. MLWritable
  19. OpPipelineStageParams
  20. InputParams
  21. Estimator
  22. PipelineStage
  23. Logging
  24. Params
  25. Serializable
  26. Serializable
  27. Identifiable
  28. AnyRef
  29. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OpTextPivotVectorizer(operationName: String = "pivotText", uid: String = UID[OpSetVectorizer[_]])(implicit tti: scala.reflect.api.JavaUniverse.TypeTag[T], ttiv: scala.reflect.api.JavaUniverse.TypeTag[Option[String]])

    Permalink

    operationName

    unique name of the operation this stage performs

    uid

    uid for instance

Type Members

  1. final type InputFeatures = Array[FeatureLike[T]]

    Permalink

    Input Features type

    Input Features type

    Definition Classes
    OpPipelineStageNOpPipelineStageInputParams
  2. final type OutputFeatures = FeatureLike[OPVector]

    Permalink
    Definition Classes
    OpPipelineStageOpPipelineStageBase

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 $[T](param: Param[T]): T

    Permalink
    Attributes
    protected
    Definition Classes
    Params
  4. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  6. final def checkInputLength(features: Array[_]): Boolean

    Permalink

    Checks the input length

    Checks the input length

    features

    input features

    returns

    true is input size as expected, false otherwise

    Definition Classes
    OpPipelineStageNInputParams
  7. final def checkSerializable: Try[Unit]

    Permalink

    Check if the stage is serializable

    Check if the stage is serializable

    returns

    Failure if not serializable

    Definition Classes
    SequenceEstimatorOpPipelineStageBase
  8. final val cleanText: BooleanParam

    Permalink
    Definition Classes
    TextParams
  9. def cleanTextFn(s: String, shouldClean: Boolean): String

    Permalink
    Definition Classes
    CleanTextFun
  10. final def clear(param: Param[_]): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    Params
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def convertToSeqOfMaps(dataset: Dataset[Seq[Option[String]]]): RDD[Seq[Map[String, Int]]]

    Permalink
    Attributes
    protected
    Definition Classes
    OpTextPivotVectorizerOpOneHotVectorizer
  13. final def copy(extra: ParamMap): OpTextPivotVectorizer.this.type

    Permalink

    This method is used to make a copy of the instance with new parameters in several methods in spark internals Default will find the constructor and make a copy for any class (AS LONG AS ALL CONSTRUCTOR PARAMS ARE VALS, this is why type tags are written as implicit vals in base classes).

    This method is used to make a copy of the instance with new parameters in several methods in spark internals Default will find the constructor and make a copy for any class (AS LONG AS ALL CONSTRUCTOR PARAMS ARE VALS, this is why type tags are written as implicit vals in base classes).

    Note: that the convention in spark is to have the uid be a constructor argument, so that copies will share a uid with the original (developers should follow this convention).

    extra

    new parameters want to add to instance

    returns

    a new instance with the same uid

    Definition Classes
    OpPipelineStageBase → Params
  14. def copyValues[T <: Params](to: T, extra: ParamMap): T

    Permalink
    Attributes
    protected
    Definition Classes
    Params
  15. def countMapUniques[V](dataset: Dataset[Seq[Map[String, V]]], size: Int, bits: Int)(implicit kryo: KryoSerializer, ct: ClassTag[V]): (Seq[Map[String, HLL]], Long)

    Permalink

    Count unique values of each of the sequence & map key components in the dataset using HyperLogLog HLL

    Count unique values of each of the sequence & map key components in the dataset using HyperLogLog HLL

    V

    value type

    dataset

    dataset to count unique values

    size

    size of each sequence component

    bits

    number of bits for HyperLogLog HLL

    kryo

    kryo serializer to serialize V value into array of bytes

    ct

    class tag of V - needed by kryo

    returns

    HyperLogLog HLL of unique values count for each of the sequence components and total rows count

    Definition Classes
    UniqueCountFun
  16. def countUniques[V](dataset: Dataset[Seq[V]], size: Int, bits: Int)(implicit kryo: KryoSerializer, ct: ClassTag[V]): (Seq[HLL], Long)

    Permalink

    Count unique values of each of the sequence components in the dataset using HyperLogLog HLL

    Count unique values of each of the sequence components in the dataset using HyperLogLog HLL

    V

    value type

    dataset

    dataset to count unique values

    size

    size of each sequence component

    bits

    number of bits for HyperLogLog HLL

    kryo

    kryo serializer to serialize V value into array of bytes

    ct

    class tag of V - needed by kryo

    returns

    HyperLogLog HLL of unique values count for each of the sequence components and total rows count

    Definition Classes
    UniqueCountFun
  17. final def defaultCopy[T <: Params](extra: ParamMap): T

    Permalink
    Attributes
    protected
    Definition Classes
    Params
  18. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def explainParam(param: Param[_]): String

    Permalink
    Definition Classes
    Params
  21. def explainParams(): String

    Permalink
    Definition Classes
    Params
  22. final def extractParamMap(): ParamMap

    Permalink
    Definition Classes
    Params
  23. final def extractParamMap(extra: ParamMap): ParamMap

    Permalink
    Definition Classes
    Params
  24. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def fit(dataset: Dataset[_]): SequenceModel[T, OPVector]

    Permalink

    Spark operation on dataset to produce Dataset for constructor fit function and then turn output function into a Model

    Spark operation on dataset to produce Dataset for constructor fit function and then turn output function into a Model

    dataset

    input data for this stage

    returns

    a fitted model that will perform the transformation specified by the function defined in constructor fit

    Definition Classes
    SequenceEstimator → Estimator
  26. def fit(dataset: Dataset[_], paramMaps: Array[ParamMap]): Seq[SequenceModel[T, OPVector]]

    Permalink
    Definition Classes
    Estimator
    Annotations
    @Since( "2.0.0" )
  27. def fit(dataset: Dataset[_], paramMap: ParamMap): SequenceModel[T, OPVector]

    Permalink
    Definition Classes
    Estimator
    Annotations
    @Since( "2.0.0" )
  28. def fit(dataset: Dataset[_], firstParamPair: ParamPair[_], otherParamPairs: ParamPair[_]*): SequenceModel[T, OPVector]

    Permalink
    Definition Classes
    Estimator
    Annotations
    @Since( "2.0.0" ) @varargs()
  29. def fitFn(dataset: Dataset[Seq[T.Value]]): SequenceModel[T, OPVector]

    Permalink

    Function that fits the sequence model

    Function that fits the sequence model

    Definition Classes
    OpOneHotVectorizerSequenceEstimator
  30. final def get[T](param: Param[T]): Option[T]

    Permalink
    Definition Classes
    Params
  31. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  32. final def getDefault[T](param: Param[T]): Option[T]

    Permalink
    Definition Classes
    Params
  33. final def getHLLBits: Int

    Permalink
    Definition Classes
    MaxPctCardinalityParams
  34. final def getInputFeature[T <: FeatureType](i: Int): Option[FeatureLike[T]]

    Permalink

    Gets an input feature Note: this method IS NOT safe to use outside the driver, please use getTransientFeature method instead

    Gets an input feature Note: this method IS NOT safe to use outside the driver, please use getTransientFeature method instead

    returns

    array of features

    Definition Classes
    InputParams
    Exceptions thrown

    NoSuchElementException if the features are not set

    RuntimeException in case one of the features is null

  35. final def getInputFeatures(): Array[OPFeature]

    Permalink

    Gets the input features Note: this method IS NOT safe to use outside the driver, please use getTransientFeatures method instead

    Gets the input features Note: this method IS NOT safe to use outside the driver, please use getTransientFeatures method instead

    returns

    array of features

    Definition Classes
    InputParams
    Exceptions thrown

    NoSuchElementException if the features are not set

    RuntimeException in case one of the features is null

  36. final def getInputSchema(): StructType

    Permalink
    Definition Classes
    OpPipelineStageParams
  37. final def getMaxPctCardinality: Double

    Permalink
    Definition Classes
    MaxPctCardinalityParams
  38. final def getMetadata(): Metadata

    Permalink
    Definition Classes
    OpPipelineStageParams
  39. final def getOrDefault[T](param: Param[T]): T

    Permalink
    Definition Classes
    Params
  40. def getOutput(): FeatureLike[OPVector]

    Permalink

    Output features that will be created by this stage

    Output features that will be created by this stage

    returns

    feature of type OutputFeatures

    Definition Classes
    HasOut → OpPipelineStageBase
  41. final def getOutputFeatureName: String

    Permalink

    Name of output feature (i.e.

    Name of output feature (i.e. column created by this stage)

    Definition Classes
    OpPipelineStage
  42. def getParam(paramName: String): Param[Any]

    Permalink
    Definition Classes
    Params
  43. final def getTransientFeature(i: Int): Option[TransientFeature]

    Permalink

    Gets an input feature at index i

    Gets an input feature at index i

    i

    input index

    returns

    maybe an input feature

    Definition Classes
    InputParams
  44. final def getTransientFeatures(): Array[TransientFeature]

    Permalink

    Gets the input Features

    Gets the input Features

    returns

    input features

    Definition Classes
    InputParams
  45. def getUnseenName: String

    Permalink
    Definition Classes
    SaveOthersParams
  46. final def hasDefault[T](param: Param[T]): Boolean

    Permalink
    Definition Classes
    Params
  47. def hasParam(paramName: String): Boolean

    Permalink
    Definition Classes
    Params
  48. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  49. final val hllBits: IntParam

    Permalink
    Definition Classes
    MaxPctCardinalityParams
  50. final def inN: Array[TransientFeature]

    Permalink
    Attributes
    protected
    Definition Classes
    HasInN
  51. def initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  52. def initializeLogIfNecessary(isInterpreter: Boolean): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  53. final def inputAsArray(in: InputFeatures): Array[OPFeature]

    Permalink

    Function to convert InputFeatures to an Array of FeatureLike

    Function to convert InputFeatures to an Array of FeatureLike

    returns

    an Array of FeatureLike

    Definition Classes
    OpPipelineStageNInputParams
  54. final def isDefined(param: Param[_]): Boolean

    Permalink
    Definition Classes
    Params
  55. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  56. final def isSet(param: Param[_]): Boolean

    Permalink
    Definition Classes
    Params
  57. def isTraceEnabled(): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  58. def log: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  59. def logDebug(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  60. def logDebug(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  61. def logError(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  62. def logError(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  63. def logInfo(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  64. def logInfo(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  65. def logName: String

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  66. def logTrace(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  67. def logTrace(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  68. def logWarning(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  69. def logWarning(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  70. def makeModel(topValues: Seq[Seq[String]], shouldCleanText: Boolean, shouldTrackNulls: Boolean, operationName: String, uid: String): OpTextPivotVectorizerModel[T]

    Permalink
    Attributes
    protected
    Definition Classes
    OpTextPivotVectorizerOpOneHotVectorizer
  71. def makeVectorColumnMetadata(shouldTrackNulls: Boolean, unseen: Option[String], topValues: Seq[Seq[String]], features: Array[TransientFeature]): Array[OpVectorColumnMetadata]

    Permalink
    Attributes
    protected
    Definition Classes
    OneHotFun
  72. def makeVectorMetadata(shouldTrackNulls: Boolean, unseen: Option[String], topValues: Seq[Seq[String]], outputName: String, features: Array[TransientFeature], stageName: String): OpVectorMetadata

    Permalink
    Attributes
    protected
    Definition Classes
    OneHotFun
  73. final val maxPctCardinality: DoubleParam

    Permalink
    Definition Classes
    MaxPctCardinalityParams
  74. final val minSupport: IntParam

    Permalink
    Definition Classes
    MinSupportParam
  75. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  78. def onGetMetadata(): Unit

    Permalink

    Function to be called on getMetadata

    Function to be called on getMetadata

    Attributes
    protected
    Definition Classes
    OpPipelineStageParams
  79. def onSetInput(): Unit

    Permalink

    Function to be called on setInput

    Function to be called on setInput

    Attributes
    protected
    Definition Classes
    InputParams
  80. val operationName: String

    Permalink

    unique name of the operation this stage performs

    unique name of the operation this stage performs

    Definition Classes
    SequenceEstimatorOpPipelineStageBase
  81. final def outputAsArray(out: OutputFeatures): Array[OPFeature]

    Permalink

    Function to convert OutputFeatures to an Array of FeatureLike

    Function to convert OutputFeatures to an Array of FeatureLike

    returns

    an Array of FeatureLike

    Definition Classes
    OpPipelineStageOpPipelineStageBase
  82. def outputFeatureUid: String

    Permalink
    Attributes
    protected[com.salesforce.op]
    Definition Classes
    OpPipelineStageNOpPipelineStage
  83. def outputIsResponse: Boolean

    Permalink

    Should output feature be a response? Yes, if any of the input features are.

    Should output feature be a response? Yes, if any of the input features are.

    returns

    true if the the output feature should be a response

    Definition Classes
    OpPipelineStage
  84. lazy val params: Array[Param[_]]

    Permalink
    Definition Classes
    Params
  85. def save(path: String): Unit

    Permalink
    Definition Classes
    MLWritable
    Annotations
    @Since( "1.6.0" ) @throws( ... )
  86. val seqIConvert: FeatureTypeSparkConverter[T]

    Permalink
    Definition Classes
    SequenceEstimator
  87. implicit val seqIEncoder: Encoder[Seq[T.Value]]

    Permalink
    Definition Classes
    SequenceEstimator
  88. final def set(paramPair: ParamPair[_]): OpTextPivotVectorizer.this.type

    Permalink
    Attributes
    protected
    Definition Classes
    Params
  89. final def set(param: String, value: Any): OpTextPivotVectorizer.this.type

    Permalink
    Attributes
    protected
    Definition Classes
    Params
  90. final def set[T](param: Param[T], value: T): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    Params
  91. def setCleanText(clean: Boolean): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    TextParams
  92. final def setDefault(paramPairs: ParamPair[_]*): OpTextPivotVectorizer.this.type

    Permalink
    Attributes
    protected
    Definition Classes
    Params
  93. final def setDefault[T](param: Param[T], value: T): OpTextPivotVectorizer.this.type

    Permalink
    Attributes
    protected
    Definition Classes
    Params
  94. final def setHLLBits(value: Int): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    MaxPctCardinalityParams
  95. final def setInput(features: FeatureLike[T]*): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    OpPipelineStageN
  96. final def setInput(features: InputFeatures): OpTextPivotVectorizer.this.type

    Permalink

    Input features that will be used by the stage

    Input features that will be used by the stage

    returns

    feature of type InputFeatures

    Definition Classes
    OpPipelineStageBase
  97. final def setInputFeatures[S <: OPFeature](features: Array[S]): OpTextPivotVectorizer.this.type

    Permalink

    Sets input features

    Sets input features

    S

    feature like type

    features

    array of input features

    returns

    this stage

    Attributes
    protected
    Definition Classes
    InputParams
  98. final def setMaxPctCardinality(v: Double): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    MaxPctCardinalityParams
  99. final def setMetadata(m: Metadata): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    OpPipelineStageParams
  100. def setMinSupport(min: Int): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    MinSupportParam
  101. def setOutputFeatureName(name: String): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    OpPipelineStage
  102. def setTopK(numberToKeep: Int): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    PivotParams
  103. def setTrackNulls(v: Boolean): OpTextPivotVectorizer.this.type

    Permalink

    Option to keep track of values that were missing

    Option to keep track of values that were missing

    Definition Classes
    TrackNullsParam
  104. def setUnseenName(unseenNameIn: String): OpTextPivotVectorizer.this.type

    Permalink
    Definition Classes
    SaveOthersParams
  105. final def stageName: String

    Permalink

    Stage unique name consisting of the stage operation name and uid

    Stage unique name consisting of the stage operation name and uid

    returns

    stage name

    Definition Classes
    OpPipelineStageBase
  106. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    Identifiable → AnyRef → Any
  108. final val topK: IntParam

    Permalink
    Definition Classes
    PivotParams
  109. final val trackNulls: BooleanParam

    Permalink
    Definition Classes
    TrackNullsParam
  110. final def transformSchema(schema: StructType): StructType

    Permalink

    This function translates the input and output features into spark schema checks and changes that will occur on the underlying data frame

    This function translates the input and output features into spark schema checks and changes that will occur on the underlying data frame

    schema

    schema of the input data frame

    returns

    a new schema with the output features added

    Definition Classes
    OpPipelineStageBase
  111. def transformSchema(schema: StructType, logging: Boolean): StructType

    Permalink
    Attributes
    protected
    Definition Classes
    PipelineStage
    Annotations
    @DeveloperApi()
  112. implicit val tti: scala.reflect.api.JavaUniverse.TypeTag[T]

    Permalink

    type tag for input

    type tag for input

    Definition Classes
    SequenceEstimator
  113. implicit val ttiv: scala.reflect.api.JavaUniverse.TypeTag[T.Value]

    Permalink

    type tag for input value

    type tag for input value

    Definition Classes
    SequenceEstimator
  114. implicit val tto: scala.reflect.api.JavaUniverse.TypeTag[OPVector]

    Permalink

    type tag for input

    type tag for input

    Definition Classes
    SequenceEstimator → HasOut
  115. implicit val ttov: scala.reflect.api.JavaUniverse.TypeTag[Value]

    Permalink

    type tag for output value

    type tag for output value

    Definition Classes
    SequenceEstimator → HasOut
  116. val uid: String

    Permalink

    uid for instance

    uid for instance

    Definition Classes
    SequenceEstimator → Identifiable
  117. final val unseenName: Param[String]

    Permalink
    Definition Classes
    SaveOthersParams
  118. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  121. final def write: MLWriter

    Permalink
    Definition Classes
    OpPipelineStageBase → MLWritable

Inherited from OpOneHotVectorizer[T]

Inherited from MaxPctCardinalityParams

Inherited from OneHotFun

Inherited from UniqueCountFun

Inherited from MinSupportParam

Inherited from TrackNullsParam

Inherited from SaveOthersParams

Inherited from CleanTextFun

Inherited from PivotParams

Inherited from TextParams

Inherited from SequenceEstimator[T, OPVector]

Inherited from OpPipelineStageN[T, OPVector]

Inherited from HasOut[OPVector]

Inherited from HasInN

Inherited from OpPipelineStage[OPVector]

Inherited from OpPipelineStageBase

Inherited from MLWritable

Inherited from OpPipelineStageParams

Inherited from InputParams

Inherited from Estimator[SequenceModel[T, OPVector]]

Inherited from PipelineStage

Inherited from Logging

Inherited from Params

Inherited from Serializable

Inherited from Serializable

Inherited from Identifiable

Inherited from AnyRef

Inherited from Any

Ungrouped