Packages

class ChunkMergeModel extends AnnotatorModel[ChunkMergeModel] with CheckLicense with HasMultipleInputAnnotationCols with HasSimpleAnnotate[ChunkMergeModel] with MergeCommonParams with MergeFeatureParams with MergePrioritizationParams with HasFeatures with FilteringParams

Merges entities coming from different CHUNK annotations

Linear Supertypes
FilteringParams, MergePrioritizationParams, MergeFeatureParams, MergeCommonParams, HasSimpleAnnotate[ChunkMergeModel], HasMultipleInputAnnotationCols, CheckLicense, AnnotatorModel[ChunkMergeModel], CanBeLazy, RawAnnotator[ChunkMergeModel], HasOutputAnnotationCol, HasInputAnnotationCols, HasOutputAnnotatorType, ParamsAndFeaturesWritable, HasFeatures, DefaultParamsWritable, MLWritable, Model[ChunkMergeModel], Transformer, PipelineStage, Logging, Params, Serializable, Serializable, Identifiable, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. ChunkMergeModel
  2. FilteringParams
  3. MergePrioritizationParams
  4. MergeFeatureParams
  5. MergeCommonParams
  6. HasSimpleAnnotate
  7. HasMultipleInputAnnotationCols
  8. CheckLicense
  9. AnnotatorModel
  10. CanBeLazy
  11. RawAnnotator
  12. HasOutputAnnotationCol
  13. HasInputAnnotationCols
  14. HasOutputAnnotatorType
  15. ParamsAndFeaturesWritable
  16. HasFeatures
  17. DefaultParamsWritable
  18. MLWritable
  19. Model
  20. Transformer
  21. PipelineStage
  22. Logging
  23. Params
  24. Serializable
  25. Serializable
  26. Identifiable
  27. AnyRef
  28. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

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

    uid

    a unique identifier for the instantiated AnnotatorModel

Type Members

  1. type AnnotationContent = Seq[Row]
    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
    Attributes
    protected
    Definition Classes
    AnnotatorModel
  10. def afterAnnotate(dataset: DataFrame): DataFrame
    Attributes
    protected
    Definition Classes
    AnnotatorModel
  11. def annotate(annotations: Seq[Annotation]): Seq[Annotation]

    Merges columns of chunk Annotations while considering false positives and replacements.

    Merges columns of chunk Annotations while considering false positives and replacements.

    annotations

    a Sequence of chunks to merge

    returns

    a Sequence of Merged CHUNK Annotations

    Definition Classes
    ChunkMergeModel → HasSimpleAnnotate
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def beforeAnnotate(dataset: Dataset[_]): Dataset[_]
    Definition Classes
    ChunkMergeModel → AnnotatorModel
  14. val blackList: StringArrayParam

    If defined, list of entities to ignore.

    If defined, list of entities to ignore. The rest will be processed

    Definition Classes
    FilteringParams
  15. val caseSensitive: BooleanParam

    Determines whether the definitions of the white listed and black listed entities are case sensitive or not.

    Determines whether the definitions of the white listed and black listed entities are case sensitive or not. If the filterValue is 'entity', 'caseSensitive' is always false. The default value is true, except: com.johnsnowlabs.nlp.annotators.chunker.AssertionFilterer

    Definition Classes
    FilteringParams
  16. final def checkSchema(schema: StructType, inputAnnotatorType: String): Boolean
    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  17. def checkValidEnvironment(spark: Option[SparkSession], scopes: Seq[String]): Unit
    Definition Classes
    CheckLicense
  18. def checkValidScope(scope: String): Unit
    Definition Classes
    CheckLicense
  19. def checkValidScopeAndEnvironment(scope: String, spark: Option[SparkSession], checkLp: Boolean): Unit
    Definition Classes
    CheckLicense
  20. def checkValidScopesAndEnvironment(scopes: Seq[String], spark: Option[SparkSession], checkLp: Boolean): Unit
    Definition Classes
    CheckLicense
  21. val chunkPrecedence: Param[String]

    When ChunkPrecedence ordering feature is used this param contains the comma separated metadata fields that drive prioritization of overlapping annotations.

    When ChunkPrecedence ordering feature is used this param contains the comma separated metadata fields that drive prioritization of overlapping annotations. When used by itself (empty chunkPrecedenceValuePrioritization) annotations will be prioritized based on number of metadata fields present. When used together with chunkPrecedenceValuePrioritization param it will prioritize based on the order of its values.

    Definition Classes
    MergePrioritizationParams
  22. val chunkPrecedenceValuePrioritization: StringArrayParam

    When ChunkPrecedence ordering feature is used this param contains an Array of comma separated strings representing the desired order of prioritization for the values in the metadata fields included in chunkPrecedence.

    When ChunkPrecedence ordering feature is used this param contains an Array of comma separated strings representing the desired order of prioritization for the values in the metadata fields included in chunkPrecedence.

    Definition Classes
    MergePrioritizationParams
  23. final def clear(param: Param[_]): ChunkMergeModel.this.type
    Definition Classes
    Params
  24. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  25. def copy(extra: ParamMap): ChunkMergeModel
    Definition Classes
    RawAnnotator → Model → Transformer → PipelineStage → Params
  26. def copyValues[T <: Params](to: T, extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  27. val criteria: Param[String]

    It is used to how to compare black and white listed values with the result of the Annotation.

    It is used to how to compare black and white listed values with the result of the Annotation. Possible values are the following: 'isin', 'regex'. Default: isin

    • isin : Filter by the chunk
    • regex : Filter by using a regex
    Definition Classes
    FilteringParams
  28. val defaultConfidence: FloatParam

    When ChunkConfidence ordering feature is included and a given annotation does not have any confidence the value of this param will be used.

    When ChunkConfidence ordering feature is included and a given annotation does not have any confidence the value of this param will be used.

    Definition Classes
    MergePrioritizationParams
  29. final def defaultCopy[T <: Params](extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  30. def dfAnnotate: UserDefinedFunction
    Definition Classes
    HasSimpleAnnotate
  31. val entitiesConfidence: MapFeature[String, Float]

    Pairs (entity,confidenceThreshold).

    Pairs (entity,confidenceThreshold). Filter the chunks with entities which have confidence lower than the confidence threshold.

    Definition Classes
    FilteringParams
  32. lazy val entitiesConfidenceMap: Map[String, Float]
    Definition Classes
    FilteringParams
  33. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  35. def explainParam(param: Param[_]): String
    Definition Classes
    Params
  36. def explainParams(): String
    Definition Classes
    Params
  37. def extraValidate(structType: StructType): Boolean
    Attributes
    protected
    Definition Classes
    RawAnnotator
  38. def extraValidateMsg: String
    Attributes
    protected
    Definition Classes
    RawAnnotator
  39. final def extractParamMap(): ParamMap
    Definition Classes
    Params
  40. final def extractParamMap(extra: ParamMap): ParamMap
    Definition Classes
    Params
  41. val falsePositives: ArrayFeature[(String, String, String)]

    Array of entity pairs that are false positives.

    Array of entity pairs that are false positives. If a third value is defined, the pair will be replaced by that value.

    Definition Classes
    MergeFeatureParams
  42. lazy val falsePositivesArray: Array[(String, String, String)]
  43. val features: ArrayBuffer[Feature[_, _, _]]
    Definition Classes
    HasFeatures
  44. val filterValue: Param[String]

    Possible values are 'result' and 'entity'.

    Possible values are 'result' and 'entity'. If the value is 'entity', it filters the ner chunks by the ner label that you want to filter. If the value is 'result', it will filter chunks by the result of the Annotation.

    Definition Classes
    FilteringParams
  45. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  46. def get[T](feature: StructFeature[T]): Option[T]
    Attributes
    protected
    Definition Classes
    HasFeatures
  47. def get[K, V](feature: MapFeature[K, V]): Option[Map[K, V]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  48. def get[T](feature: SetFeature[T]): Option[Set[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  49. def get[T](feature: ArrayFeature[T]): Option[Array[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  50. final def get[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  51. def getChunkPrecedence: String
    Definition Classes
    MergePrioritizationParams
  52. def getChunkPrecedenceValuePrioritization: Array[String]
    Definition Classes
    MergePrioritizationParams
  53. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  54. final def getDefault[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  55. def getDefaultConfidence: Float
    Definition Classes
    MergePrioritizationParams
  56. def getFalsePositives: Array[(String, String, String)]

    Array of entity pairs that are false positives.

    Array of entity pairs that are false positives. If a third value is defined, the pair will be replaced by that value.

    Definition Classes
    MergeFeatureParams
  57. def getInputCols: Array[String]
    Definition Classes
    HasInputAnnotationCols
  58. def getLazyAnnotator: Boolean
    Definition Classes
    CanBeLazy
  59. def getMergeOverlapping: Boolean
    Definition Classes
    MergeCommonParams
  60. final def getOrDefault[T](param: Param[T]): T
    Definition Classes
    Params
  61. def getOrderingFeatures: Array[String]
    Definition Classes
    MergePrioritizationParams
  62. final def getOutputCol: String
    Definition Classes
    HasOutputAnnotationCol
  63. def getParam(paramName: String): Param[Any]
    Definition Classes
    Params
  64. def getReplaceDict: Map[String, String]

    Mapping of replacement strings for entities.

    Mapping of replacement strings for entities.

    Definition Classes
    MergeFeatureParams
  65. def getReplaceDictStr: String

    Get the replacement strings for entities

    Get the replacement strings for entities

    Definition Classes
    MergeFeatureParams
  66. def getSelectionStrategy: String
    Definition Classes
    MergePrioritizationParams
  67. final def hasDefault[T](param: Param[T]): Boolean
    Definition Classes
    Params
  68. def hasParam(paramName: String): Boolean
    Definition Classes
    Params
  69. def hasParent: Boolean
    Definition Classes
    Model
  70. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  71. def initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  72. def initializeLogIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  73. val inputAnnotatorType: String

    Output annotator types: CHUNK, CHUNK

    Output annotator types: CHUNK, CHUNK

    Definition Classes
    ChunkMergeModel → HasMultipleInputAnnotationCols
  74. lazy val inputAnnotatorTypes: Array[String]
    Definition Classes
    HasMultipleInputAnnotationCols → HasInputAnnotationCols
  75. final val inputCols: StringArrayParam
    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  76. final def isDefined(param: Param[_]): Boolean
    Definition Classes
    Params
  77. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  78. final def isSet(param: Param[_]): Boolean
    Definition Classes
    Params
  79. def isTraceEnabled(): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  80. val lazyAnnotator: BooleanParam
    Definition Classes
    CanBeLazy
  81. def log: Logger
    Attributes
    protected
    Definition Classes
    Logging
  82. def logDebug(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  83. def logDebug(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  84. def logError(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  85. def logError(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  86. def logInfo(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  87. def logInfo(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  88. def logName: String
    Attributes
    protected
    Definition Classes
    Logging
  89. def logTrace(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  90. def logTrace(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  91. def logWarning(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  92. def logWarning(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  93. val mergeOverlapping: BooleanParam

    whether to merge overlapping matched chunks.

    whether to merge overlapping matched chunks. Defaults to true

    Definition Classes
    MergeCommonParams
  94. def msgHelper(schema: StructType): String
    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  95. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  96. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  97. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  98. def onWrite(path: String, spark: SparkSession): Unit
    Attributes
    protected
    Definition Classes
    ParamsAndFeaturesWritable
  99. val optionalInputAnnotatorTypes: Array[String]
    Definition Classes
    HasInputAnnotationCols
  100. val orderingFeatures: StringArrayParam

    Array of strings specifying the ordering features to use for overlapping entities.

    Array of strings specifying the ordering features to use for overlapping entities. Possible values are ChunkBegin, ChunkLength, ChunkPrecedence, ChunkConfidence.

    Definition Classes
    MergePrioritizationParams
  101. val outputAnnotatorType: AnnotatorType

    Input annotator types: CHUNK

    Input annotator types: CHUNK

    Definition Classes
    ChunkMergeModel → HasOutputAnnotatorType
  102. final val outputCol: Param[String]
    Attributes
    protected
    Definition Classes
    HasOutputAnnotationCol
  103. lazy val params: Array[Param[_]]
    Definition Classes
    Params
  104. var parent: Estimator[ChunkMergeModel]
    Definition Classes
    Model
  105. def prioritize(annotations: Seq[Annotation]): Seq[Annotation]
    Attributes
    protected
    Definition Classes
    MergePrioritizationParams
  106. val regex: StringArrayParam

    If defined, list of regex to process the chunks (Default: Array())

    If defined, list of regex to process the chunks (Default: Array())

    Definition Classes
    FilteringParams
  107. val replaceDict: MapFeature[String, String]

    Mapping of replacement strings for entities.

    Mapping of replacement strings for entities.

    Definition Classes
    MergeFeatureParams
  108. lazy val replaceDictMap: Map[String, String]
  109. def resolveFilter(chunkerAnnotations: Seq[Annotation]): Seq[Annotation]
    Attributes
    protected
    Definition Classes
    FilteringParams
  110. def resolveMergeFilter(a: Annotation, entityValue: String, falsePositivesArray: Array[(String, String, String)], replaceDictMap: Map[String, String] = Map.empty): Option[Annotation]
    Attributes
    protected
    Definition Classes
    FilteringParams
  111. def resolveWhiteListBlackListFilter(annotations: Seq[Annotation]): Seq[Annotation]
    Attributes
    protected
    Definition Classes
    FilteringParams
  112. def save(path: String): Unit
    Definition Classes
    MLWritable
    Annotations
    @Since( "1.6.0" ) @throws( ... )
  113. val selectionStrategy: Param[String]

    Whether to select annotations sequentially based on annotation order (Sequential) or using any other available strategy; currently only Sequential and DiverseLonger are available.

    Whether to select annotations sequentially based on annotation order (Sequential) or using any other available strategy; currently only Sequential and DiverseLonger are available.

    Definition Classes
    MergePrioritizationParams
  114. def set[T](feature: StructFeature[T], value: T): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  115. def set[K, V](feature: MapFeature[K, V], value: Map[K, V]): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  116. def set[T](feature: SetFeature[T], value: Set[T]): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  117. def set[T](feature: ArrayFeature[T], value: Array[T]): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  118. final def set(paramPair: ParamPair[_]): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    Params
  119. final def set(param: String, value: Any): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    Params
  120. final def set[T](param: Param[T], value: T): ChunkMergeModel.this.type
    Definition Classes
    Params
  121. def setAllowList(list: String*): ChunkMergeModel.this.type
    Definition Classes
    FilteringParams
  122. def setAllowList(list: Array[String]): ChunkMergeModel.this.type
    Definition Classes
    FilteringParams
  123. def setBlackList(list: String*): ChunkMergeModel.this.type
    Definition Classes
    FilteringParams
  124. def setBlackList(list: Array[String]): ChunkMergeModel.this.type

    If defined, list of entities to ignore.

    If defined, list of entities to ignore. The rest will be processed.

    Definition Classes
    FilteringParams
  125. def setCaseSensitive(value: Boolean): ChunkMergeModel.this.type

    Determines whether the definitions of the white listed and black listed entities are case sensitive or not.

    Determines whether the definitions of the white listed and black listed entities are case sensitive or not. If the filterValue is 'entity', 'caseSensitive' is always False. The default value is true, except: com.johnsnowlabs.nlp.annotators.chunker.AssertionFilterer

    Definition Classes
    FilteringParams
  126. def setChunkPrecedence(m: String): ChunkMergeModel.this.type
    Definition Classes
    MergePrioritizationParams
  127. def setChunkPrecedenceValuePrioritization(m: Array[String]): ChunkMergeModel.this.type
    Definition Classes
    MergePrioritizationParams
  128. def setCriteria(s: String): ChunkMergeModel.this.type

    Sets criteria for how to compare black and white listed values with the result of the Annotation.

    Sets criteria for how to compare black and white listed values with the result of the Annotation. Possible values are the following: 'isin', 'regex'. Default: isin.

    Definition Classes
    FilteringParams
  129. def setDefault[T](feature: StructFeature[T], value: () ⇒ T): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  130. def setDefault[K, V](feature: MapFeature[K, V], value: () ⇒ Map[K, V]): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  131. def setDefault[T](feature: SetFeature[T], value: () ⇒ Set[T]): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  132. def setDefault[T](feature: ArrayFeature[T], value: () ⇒ Array[T]): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  133. final def setDefault(paramPairs: ParamPair[_]*): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    Params
  134. final def setDefault[T](param: Param[T], value: T): ChunkMergeModel.this.type
    Attributes
    protected
    Definition Classes
    Params
  135. def setDefaultConfidence(m: Float): ChunkMergeModel.this.type
    Definition Classes
    MergePrioritizationParams
  136. def setDenyList(list: String*): ChunkMergeModel.this.type
    Definition Classes
    FilteringParams
  137. def setDenyList(list: Array[String]): ChunkMergeModel.this.type
    Definition Classes
    FilteringParams
  138. def setEntitiesConfidence(value: Map[String, Float]): ChunkMergeModel.this.type
    Definition Classes
    FilteringParams
  139. def setFalsePositives(value: List[List[String]]): ChunkMergeModel.this.type

    Array of entity pairs that are false positives.

    Array of entity pairs that are false positives. If a third value is defined, the pair will be replaced by that value.

    Definition Classes
    MergeFeatureParams
  140. def setFalsePositives(value: Array[(String, String, String)]): ChunkMergeModel.this.type

    Array of entity pairs that are false positives.

    Array of entity pairs that are false positives. If a third value is defined, the pair will be replaced by that value.

    Definition Classes
    MergeFeatureParams
  141. def setFilterEntity(v: String): ChunkMergeModel.this.type

    Possible values are 'result' and 'entity'.

    Possible values are 'result' and 'entity'. If the value is 'entity', it filters the ner chunks by the ner label that you want to filter. If the value is 'result', it will filter chunks by the result of the Annotation.

    Definition Classes
    FilteringParams
  142. def setInputCols(value: Array[String]): ChunkMergeModel.this.type
    Definition Classes
    HasMultipleInputAnnotationCols → HasInputAnnotationCols
  143. final def setInputCols(value: String*): ChunkMergeModel.this.type
    Definition Classes
    HasInputAnnotationCols
  144. def setLazyAnnotator(value: Boolean): ChunkMergeModel.this.type
    Definition Classes
    CanBeLazy
  145. def setMergeOverlapping(v: Boolean): ChunkMergeModel.this.type

    whether to merge overlapping matched chunks.

    whether to merge overlapping matched chunks.

    Definition Classes
    MergeCommonParams
  146. def setOrderingFeatures(m: Array[String]): ChunkMergeModel.this.type
    Definition Classes
    MergePrioritizationParams
  147. final def setOutputCol(value: String): ChunkMergeModel.this.type
    Definition Classes
    HasOutputAnnotationCol
  148. def setParent(parent: Estimator[ChunkMergeModel]): ChunkMergeModel
    Definition Classes
    Model
  149. def setRegex(list: String*): ChunkMergeModel.this.type

    Sets the list of regexes to process the chunks.

    Sets the list of regexes to process the chunks.

    Definition Classes
    FilteringParams
  150. def setReplaceDict(replaceDict: HashMap[String, String]): ChunkMergeModel.this.type

    Set the lists of entity pairs allowed for a given relation

    Set the lists of entity pairs allowed for a given relation

    Definition Classes
    MergeFeatureParams
  151. def setReplaceDict(value: Map[String, String]): ChunkMergeModel.this.type

    Mapping of replacement strings for entities.

    Mapping of replacement strings for entities.

    Definition Classes
    MergeFeatureParams
  152. def setSelectionStrategy(m: String): ChunkMergeModel.this.type
    Definition Classes
    MergePrioritizationParams
  153. def setWhiteList(list: String*): ChunkMergeModel.this.type
    Definition Classes
    FilteringParams
  154. def setWhiteList(list: Array[String]): ChunkMergeModel.this.type

    Sets the list of entities to process.

    Sets the list of entities to process. The rest will be ignored. Do not include IOB prefix on labels.

    Definition Classes
    FilteringParams
  155. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  156. def toString(): String
    Definition Classes
    Identifiable → AnyRef → Any
  157. final def transform(dataset: Dataset[_]): DataFrame
    Definition Classes
    AnnotatorModel → Transformer
  158. def transform(dataset: Dataset[_], paramMap: ParamMap): DataFrame
    Definition Classes
    Transformer
    Annotations
    @Since( "2.0.0" )
  159. def transform(dataset: Dataset[_], firstParamPair: ParamPair[_], otherParamPairs: ParamPair[_]*): DataFrame
    Definition Classes
    Transformer
    Annotations
    @Since( "2.0.0" ) @varargs()
  160. final def transformSchema(schema: StructType): StructType
    Definition Classes
    RawAnnotator → PipelineStage
  161. def transformSchema(schema: StructType, logging: Boolean): StructType
    Attributes
    protected
    Definition Classes
    PipelineStage
    Annotations
    @DeveloperApi()
  162. val uid: String
    Definition Classes
    ChunkMergeModel → Identifiable
  163. def validate(schema: StructType): Boolean
    Attributes
    protected
    Definition Classes
    RawAnnotator
  164. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  165. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  166. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  167. val whiteList: StringArrayParam

    If defined, list of entities to process.

    If defined, list of entities to process. The rest will be ignored. Does not include IOB prefix on labels (Default: Array())

    Definition Classes
    FilteringParams
  168. def wrapColumnMetadata(col: Column): Column
    Attributes
    protected
    Definition Classes
    RawAnnotator
  169. def write: MLWriter
    Definition Classes
    ParamsAndFeaturesWritable → DefaultParamsWritable → MLWritable

Inherited from FilteringParams

Inherited from MergePrioritizationParams

Inherited from MergeFeatureParams

Inherited from MergeCommonParams

Inherited from HasSimpleAnnotate[ChunkMergeModel]

Inherited from HasMultipleInputAnnotationCols

Inherited from CheckLicense

Inherited from AnnotatorModel[ChunkMergeModel]

Inherited from CanBeLazy

Inherited from RawAnnotator[ChunkMergeModel]

Inherited from HasOutputAnnotationCol

Inherited from HasInputAnnotationCols

Inherited from HasOutputAnnotatorType

Inherited from ParamsAndFeaturesWritable

Inherited from HasFeatures

Inherited from DefaultParamsWritable

Inherited from MLWritable

Inherited from Model[ChunkMergeModel]

Inherited from Transformer

Inherited from PipelineStage

Inherited from Logging

Inherited from Params

Inherited from Serializable

Inherited from Serializable

Inherited from Identifiable

Inherited from AnyRef

Inherited from Any

Parameters

Annotator types

Required input and expected output annotator types

Members

Parameter setters

Parameter getters