c

com.johnsnowlabs.partition

PartitionTransformer

class PartitionTransformer extends AnnotatorModel[PartitionTransformer] with HasSimpleAnnotate[PartitionTransformer] with HasReaderProperties with HasEmailReaderProperties with HasExcelReaderProperties with HasHTMLReaderProperties with HasPowerPointProperties with HasTextReaderProperties with HasPdfToTextProperties with HasXmlReaderProperties with HasChunkerProperties

The PartitionTransformer annotator allows you to use the Partition feature more smoothly within existing Spark NLP workflows, enabling seamless reuse of your pipelines. PartitionTransformer can be used for extracting structured content from various document types using Spark NLP readers. It supports reading from files, URLs, in-memory strings, or byte arrays, and returns parsed output as a structured Spark DataFrame.

Supported formats include plain text, HTML, Word (.doc/.docx), Excel (.xls/.xlsx), PowerPoint (.ppt/.pptx), email files (.eml, .msg), and PDFs.

Example

import com.johnsnowlabs.partition.PartitionTransformer
import com. johnsnowlabs. nlp. base. DocumentAssembler
import org.apache.spark.ml.Pipeline
import spark.implicits._
val urls = Seq("https://www.blizzard.com", "https://www.google.com/").toDS.toDF("text")

val documentAssembler = new DocumentAssembler()
  .setInputCol("text")
  .setOutputCol("documents")

val partition = new PartitionTransformer()
  .setInputCols("document")
  .setOutputCol("partition")
  .setContentType("url")
  .setHeaders(Map("Accept-Language" -> "es-ES"))

val pipeline = new Pipeline()
  .setStages(Array(documentAssembler, partition))

val pipelineModel = pipeline.fit(testDataSet)
val resultDf = pipelineModel.transform(testDataSet)

resultDf.show()
+--------------------+--------------------+--------------------+
|                text|            document|           partition|
+--------------------+--------------------+--------------------+
|https://www.blizz...|[{Title, Juegos d...|[{document, 0, 16...|
|https://www.googl...|[{Title, Gmail Im...|[{document, 0, 28...|
+--------------------+--------------------+--------------------+
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. PartitionTransformer
  2. HasChunkerProperties
  3. HasXmlReaderProperties
  4. HasPdfToTextProperties
  5. HasTextReaderProperties
  6. HasPowerPointProperties
  7. HasHTMLReaderProperties
  8. HasExcelReaderProperties
  9. HasEmailReaderProperties
  10. HasReaderProperties
  11. HasSimpleAnnotate
  12. AnnotatorModel
  13. CanBeLazy
  14. RawAnnotator
  15. HasOutputAnnotationCol
  16. HasInputAnnotationCols
  17. HasOutputAnnotatorType
  18. ParamsAndFeaturesWritable
  19. HasFeatures
  20. DefaultParamsWritable
  21. MLWritable
  22. Model
  23. Transformer
  24. PipelineStage
  25. Logging
  26. Params
  27. Serializable
  28. Identifiable
  29. AnyRef
  30. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PartitionTransformer()
  2. new PartitionTransformer(uid: String)

Type Members

  1. type AnnotationContent = Seq[Row]

    internal types to show Rows as a relevant StructType Should be deleted once Spark releases UserDefinedTypes to @developerAPI

    internal types to show Rows as a relevant StructType Should be deleted once Spark releases UserDefinedTypes to @developerAPI

    Attributes
    protected
    Definition Classes
    AnnotatorModel
  2. type AnnotatorType = String
    Definition Classes
    HasOutputAnnotatorType

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def $[T](param: Param[T]): T
    Attributes
    protected
    Definition Classes
    Params
  4. def $$[T](feature: StructFeature[T]): T
    Attributes
    protected
    Definition Classes
    HasFeatures
  5. def $$[K, V](feature: MapFeature[K, V]): Map[K, V]
    Attributes
    protected
    Definition Classes
    HasFeatures
  6. def $$[T](feature: SetFeature[T]): Set[T]
    Attributes
    protected
    Definition Classes
    HasFeatures
  7. def $$[T](feature: ArrayFeature[T]): Array[T]
    Attributes
    protected
    Definition Classes
    HasFeatures
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def _transform(dataset: Dataset[_], recursivePipeline: Option[PipelineModel]): DataFrame
    Definition Classes
    PartitionTransformerAnnotatorModel
  10. val addAttachmentContent: Param[Boolean]
    Definition Classes
    HasEmailReaderProperties
  11. def afterAnnotate(dataset: DataFrame): DataFrame
    Attributes
    protected
    Definition Classes
    AnnotatorModel
  12. def annotate(annotations: Seq[Annotation]): Seq[Annotation]

    takes a document and annotations and produces new annotations of this annotator's annotation type

    takes a document and annotations and produces new annotations of this annotator's annotation type

    annotations

    Annotations that correspond to inputAnnotationCols generated by previous annotators if any

    returns

    any number of annotations processed for every input annotation. Not necessary one to one relationship

    Definition Classes
    PartitionTransformerHasSimpleAnnotate
  13. val appendCells: Param[Boolean]
    Definition Classes
    HasExcelReaderProperties
  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def beforeAnnotate(dataset: Dataset[_]): Dataset[_]
    Attributes
    protected
    Definition Classes
    AnnotatorModel
  16. val cellSeparator: Param[String]
    Definition Classes
    HasExcelReaderProperties
  17. final def checkSchema(schema: StructType, inputAnnotatorType: String): Boolean
    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  18. val chunkingStrategy: Param[String]
    Definition Classes
    HasChunkerProperties
  19. final def clear(param: Param[_]): PartitionTransformer.this.type
    Definition Classes
    Params
  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  21. val combineTextUnderNChars: Param[Int]
    Definition Classes
    HasChunkerProperties
  22. val contentPath: Param[String]
    Definition Classes
    HasReaderProperties
  23. val contentType: Param[String]
    Definition Classes
    HasReaderProperties
  24. def copy(extra: ParamMap): PartitionTransformer

    requirement for annotators copies

    requirement for annotators copies

    Definition Classes
    RawAnnotator → Model → Transformer → PipelineStage → Params
  25. def copyValues[T <: Params](to: T, extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  26. final def defaultCopy[T <: Params](extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  27. def dfAnnotate: UserDefinedFunction

    Wraps annotate to happen inside SparkSQL user defined functions in order to act with org.apache.spark.sql.Column

    Wraps annotate to happen inside SparkSQL user defined functions in order to act with org.apache.spark.sql.Column

    returns

    udf function to be applied to inputCols using this annotator's annotate function as part of ML transformation

    Definition Classes
    HasSimpleAnnotate
  28. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  30. def explainParam(param: Param[_]): String
    Definition Classes
    Params
  31. def explainParams(): String
    Definition Classes
    Params
  32. val explodeDocs: BooleanParam
    Definition Classes
    HasReaderProperties
  33. def extraValidate(structType: StructType): Boolean
    Attributes
    protected
    Definition Classes
    RawAnnotator
  34. def extraValidateMsg: String

    Override for additional custom schema checks

    Override for additional custom schema checks

    Attributes
    protected
    Definition Classes
    RawAnnotator
  35. final val extractCoordinates: BooleanParam
    Definition Classes
    HasPdfToTextProperties
  36. final def extractParamMap(): ParamMap
    Definition Classes
    Params
  37. final def extractParamMap(extra: ParamMap): ParamMap
    Definition Classes
    Params
  38. val features: ArrayBuffer[Feature[_, _, _]]
    Definition Classes
    HasFeatures
  39. val flattenOutput: BooleanParam
    Definition Classes
    HasReaderProperties
  40. def get[T](feature: StructFeature[T]): Option[T]
    Attributes
    protected
    Definition Classes
    HasFeatures
  41. def get[K, V](feature: MapFeature[K, V]): Option[Map[K, V]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  42. def get[T](feature: SetFeature[T]): Option[Set[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  43. def get[T](feature: ArrayFeature[T]): Option[Array[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  44. final def get[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  45. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  46. final def getDefault[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  47. final def getInputCol: String
    Definition Classes
    HasReaderProperties
  48. def getInputCols: Array[String]

    returns

    input annotations columns currently used

    Definition Classes
    HasInputAnnotationCols
  49. def getLazyAnnotator: Boolean
    Definition Classes
    CanBeLazy
  50. final def getOrDefault[T](param: Param[T]): T
    Definition Classes
    Params
  51. final def getOutputCol: String

    Gets annotation column name going to generate

    Gets annotation column name going to generate

    Definition Classes
    HasOutputAnnotationCol
  52. def getParam(paramName: String): Param[Any]
    Definition Classes
    Params
  53. val groupBrokenParagraphs: Param[Boolean]
    Definition Classes
    HasTextReaderProperties
  54. final def hasDefault[T](param: Param[T]): Boolean
    Definition Classes
    Params
  55. def hasParam(paramName: String): Boolean
    Definition Classes
    Params
  56. def hasParent: Boolean
    Definition Classes
    Model
  57. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  58. val headers: Param[Map[String, String]]
    Definition Classes
    HasHTMLReaderProperties
  59. val ignoreExceptions: BooleanParam
    Definition Classes
    HasReaderProperties
  60. val includePageBreaks: Param[Boolean]
    Definition Classes
    HasReaderProperties
  61. val includeSlideNotes: Param[Boolean]
    Definition Classes
    HasPowerPointProperties
  62. val includeTitleTag: Param[Boolean]
    Definition Classes
    HasHTMLReaderProperties
  63. val inferTableStructure: Param[Boolean]
    Definition Classes
    HasReaderProperties
  64. def initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  65. def initializeLogIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  66. val inputAnnotatorTypes: Array[AnnotatorType]

    Annotator reference id.

    Annotator reference id. Used to identify elements in metadata or to refer to this annotator type

    Definition Classes
    PartitionTransformerHasInputAnnotationCols
  67. final val inputCol: Param[String]
    Attributes
    protected
    Definition Classes
    HasReaderProperties
  68. final val inputCols: StringArrayParam

    columns that contain annotations necessary to run this annotator AnnotatorType is used both as input and output columns if not specified

    columns that contain annotations necessary to run this annotator AnnotatorType is used both as input and output columns if not specified

    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  69. final def isDefined(param: Param[_]): Boolean
    Definition Classes
    Params
  70. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  71. final def isSet(param: Param[_]): Boolean
    Definition Classes
    Params
  72. def isTraceEnabled(): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  73. val lazyAnnotator: BooleanParam
    Definition Classes
    CanBeLazy
  74. def log: Logger
    Attributes
    protected
    Definition Classes
    Logging
  75. def logDebug(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  76. def logDebug(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  77. def logError(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  78. def logError(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  79. def logInfo(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  80. def logInfo(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  81. def logName: String
    Attributes
    protected
    Definition Classes
    Logging
  82. def logTrace(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  83. def logTrace(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  84. def logWarning(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  85. def logWarning(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  86. val logger: Logger
    Attributes
    protected
  87. val maxCharacters: Param[Int]
    Definition Classes
    HasChunkerProperties
  88. val maxLineCount: Param[Int]
    Definition Classes
    HasTextReaderProperties
  89. def msgHelper(schema: StructType): String
    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  90. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  91. val newAfterNChars: Param[Int]
    Definition Classes
    HasChunkerProperties
  92. final val normalizeLigatures: BooleanParam
    Definition Classes
    HasPdfToTextProperties
  93. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  94. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  95. def onWrite(path: String, spark: SparkSession): Unit
    Attributes
    protected
    Definition Classes
    ParamsAndFeaturesWritable
  96. val onlyLeafNodes: Param[Boolean]
    Definition Classes
    HasXmlReaderProperties
  97. final val onlyPageNum: BooleanParam
    Definition Classes
    HasPdfToTextProperties
  98. val optionalInputAnnotatorTypes: Array[String]
    Definition Classes
    HasInputAnnotationCols
  99. final val originCol: Param[String]
    Definition Classes
    HasPdfToTextProperties
  100. val outputAnnotatorType: AnnotatorType
  101. final val outputCol: Param[String]
    Attributes
    protected
    Definition Classes
    HasOutputAnnotationCol
  102. val outputFormat: Param[String]
    Definition Classes
    HasHTMLReaderProperties
  103. val overlap: Param[Int]
    Definition Classes
    HasChunkerProperties
  104. val overlapAll: Param[Boolean]
    Definition Classes
    HasChunkerProperties
  105. final val pageNumCol: Param[String]
    Definition Classes
    HasPdfToTextProperties
  106. val paragraphSplit: Param[String]
    Definition Classes
    HasTextReaderProperties
  107. lazy val params: Array[Param[_]]
    Definition Classes
    Params
  108. var parent: Estimator[PartitionTransformer]
    Definition Classes
    Model
  109. final val partitionNum: IntParam
    Definition Classes
    HasPdfToTextProperties
  110. def save(path: String): Unit
    Definition Classes
    MLWritable
    Annotations
    @throws("If the input path already exists but overwrite is not enabled.") @Since("1.6.0")
  111. def set[T](feature: StructFeature[T], value: T): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  112. def set[K, V](feature: MapFeature[K, V], value: Map[K, V]): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  113. def set[T](feature: SetFeature[T], value: Set[T]): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  114. def set[T](feature: ArrayFeature[T], value: Array[T]): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  115. final def set(paramPair: ParamPair[_]): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    Params
  116. final def set(param: String, value: Any): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    Params
  117. final def set[T](param: Param[T], value: T): PartitionTransformer.this.type
    Definition Classes
    Params
  118. def setAddAttachmentContent(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasEmailReaderProperties
  119. def setAppendCells(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasExcelReaderProperties
  120. def setCellSeparator(value: String): PartitionTransformer.this.type
    Definition Classes
    HasExcelReaderProperties
  121. def setChunkingStrategy(value: String): PartitionTransformer.this.type
    Definition Classes
    HasChunkerProperties
  122. def setComBineTextUnderNChars(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasChunkerProperties
  123. def setContentPath(value: String): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  124. def setContentType(value: String): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  125. def setDefault[T](feature: StructFeature[T], value: () => T): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  126. def setDefault[K, V](feature: MapFeature[K, V], value: () => Map[K, V]): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  127. def setDefault[T](feature: SetFeature[T], value: () => Set[T]): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  128. def setDefault[T](feature: ArrayFeature[T], value: () => Array[T]): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  129. final def setDefault(paramPairs: ParamPair[_]*): PartitionTransformer.this.type
    Attributes
    protected
    Definition Classes
    Params
  130. final def setDefault[T](param: Param[T], value: T): PartitionTransformer.this.type
    Attributes
    protected[org.apache.spark.ml]
    Definition Classes
    Params
  131. def setExplodeDocs(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  132. def setExtractCoordinates(value: Boolean): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  133. def setFlattenOutput(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  134. def setGroupBrokenParagraphs(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasTextReaderProperties
  135. def setHeaders(value: Map[String, String]): PartitionTransformer.this.type
    Definition Classes
    HasHTMLReaderProperties
  136. def setHeadersPython(headers: Map[String, String]): PartitionTransformer.this.type
    Definition Classes
    HasHTMLReaderProperties
  137. def setIgnoreExceptions(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  138. def setIncludePageBreaks(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  139. def setIncludeSlideNotes(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasPowerPointProperties
  140. def setIncludeTitleTag(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasHTMLReaderProperties
  141. def setInferTableStructure(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  142. final def setInputCol(value: String): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  143. def setInputCols(value: Array[String]): PartitionTransformer.this.type

    Overrides required annotators column if different than default

    Overrides required annotators column if different than default

    Definition Classes
    PartitionTransformerHasInputAnnotationCols
  144. final def setInputCols(value: String*): PartitionTransformer.this.type
    Definition Classes
    HasInputAnnotationCols
  145. def setLazyAnnotator(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    CanBeLazy
  146. def setMaxCharacters(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasChunkerProperties
  147. def setMaxLineCount(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasTextReaderProperties
  148. def setNewAfterNChars(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasChunkerProperties
  149. def setNormalizeLigatures(value: Boolean): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  150. def setOnlyLeafNodes(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasXmlReaderProperties
  151. def setOnlyPageNum(value: Boolean): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  152. def setOriginCol(value: String): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  153. final def setOutputCol(value: String): PartitionTransformer.this.type

    Overrides annotation column name when transforming

    Overrides annotation column name when transforming

    Definition Classes
    HasOutputAnnotationCol
  154. def setOutputFormat(value: String): PartitionTransformer.this.type
    Definition Classes
    HasHTMLReaderProperties
  155. def setOverlap(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasChunkerProperties
  156. def setOverlapAll(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasChunkerProperties
  157. def setPageNumCol(value: String): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  158. def setParagraphSplit(value: String): PartitionTransformer.this.type
    Definition Classes
    HasTextReaderProperties
  159. def setParent(parent: Estimator[PartitionTransformer]): PartitionTransformer
    Definition Classes
    Model
  160. def setPartitionNum(value: Int): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  161. def setShortLineWordThreshold(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasTextReaderProperties
  162. def setSort(value: Boolean): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  163. def setSplitPage(value: Boolean): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  164. def setStoreContent(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  165. def setStoreSplittedPdf(value: Boolean): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  166. def setTextStripper(value: String): PartitionTransformer.this.type

    Definition Classes
    HasPdfToTextProperties
  167. def setThreshold(value: Double): PartitionTransformer.this.type
    Definition Classes
    HasTextReaderProperties
  168. def setTimeout(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasHTMLReaderProperties
  169. def setTitleFontSize(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasReaderProperties
  170. def setTitleLengthSize(value: Int): PartitionTransformer.this.type
    Definition Classes
    HasTextReaderProperties
  171. def setXmlKeepTags(value: Boolean): PartitionTransformer.this.type
    Definition Classes
    HasXmlReaderProperties
  172. val shortLineWordThreshold: Param[Int]
    Definition Classes
    HasTextReaderProperties
  173. final val sort: BooleanParam
    Definition Classes
    HasPdfToTextProperties
  174. final val splitPage: BooleanParam
    Definition Classes
    HasPdfToTextProperties
  175. val storeContent: Param[Boolean]
    Definition Classes
    HasReaderProperties
  176. final val storeSplittedPdf: BooleanParam
    Definition Classes
    HasPdfToTextProperties
  177. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  178. final val textStripper: Param[String]
    Definition Classes
    HasPdfToTextProperties
  179. val threshold: Param[Double]
    Definition Classes
    HasTextReaderProperties
  180. val timeout: Param[Int]
    Definition Classes
    HasHTMLReaderProperties
  181. val titleFontSize: Param[Int]
    Definition Classes
    HasReaderProperties
  182. val titleLengthSize: Param[Int]
    Definition Classes
    HasTextReaderProperties
  183. def toString(): String
    Definition Classes
    Identifiable → AnyRef → Any
  184. final def transform(dataset: Dataset[_]): DataFrame

    Given requirements are met, this applies ML transformation within a Pipeline or stand-alone Output annotation will be generated as a new column, previous annotations are still available separately metadata is built at schema level to record annotations structural information outside its content

    Given requirements are met, this applies ML transformation within a Pipeline or stand-alone Output annotation will be generated as a new column, previous annotations are still available separately metadata is built at schema level to record annotations structural information outside its content

    dataset

    Dataset[Row]

    Definition Classes
    AnnotatorModel → Transformer
  185. def transform(dataset: Dataset[_], paramMap: ParamMap): DataFrame
    Definition Classes
    Transformer
    Annotations
    @Since("2.0.0")
  186. def transform(dataset: Dataset[_], firstParamPair: ParamPair[_], otherParamPairs: ParamPair[_]*): DataFrame
    Definition Classes
    Transformer
    Annotations
    @varargs() @Since("2.0.0")
  187. final def transformSchema(schema: StructType): StructType

    requirement for pipeline transformation validation.

    requirement for pipeline transformation validation. It is called on fit()

    Definition Classes
    RawAnnotator → PipelineStage
  188. def transformSchema(schema: StructType, logging: Boolean): StructType
    Attributes
    protected
    Definition Classes
    PipelineStage
    Annotations
    @DeveloperApi()
  189. val uid: String
    Definition Classes
    PartitionTransformer → Identifiable
  190. def validate(schema: StructType): Boolean

    takes a Dataset and checks to see if all the required annotation types are present.

    takes a Dataset and checks to see if all the required annotation types are present.

    schema

    to be validated

    returns

    True if all the required types are present, else false

    Attributes
    protected
    Definition Classes
    RawAnnotator
  191. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  192. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  193. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  194. def wrapColumnMetadata(col: Column): Column
    Attributes
    protected
    Definition Classes
    RawAnnotator
  195. def write: MLWriter
    Definition Classes
    ParamsAndFeaturesWritable → DefaultParamsWritable → MLWritable
  196. val xmlKeepTags: Param[Boolean]
    Definition Classes
    HasXmlReaderProperties

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from HasChunkerProperties

Inherited from HasXmlReaderProperties

Inherited from HasPdfToTextProperties

Inherited from HasReaderProperties

Inherited from CanBeLazy

Inherited from HasOutputAnnotationCol

Inherited from HasInputAnnotationCols

Inherited from HasOutputAnnotatorType

Inherited from HasFeatures

Inherited from DefaultParamsWritable

Inherited from MLWritable

Inherited from Model[PartitionTransformer]

Inherited from Transformer

Inherited from PipelineStage

Inherited from Logging

Inherited from Params

Inherited from Serializable

Inherited from Identifiable

Inherited from AnyRef

Inherited from Any

getParam

setParam

Ungrouped