class BertSentenceChunkEmbeddings extends BertSentenceEmbeddings with HandleExceptionParams with HasSafeBatchAnnotate[BertSentenceEmbeddings] with CheckLicense

BERT Sentence embeddings for chunk annotations which take into account the context of the sentence the chunk appeared in. This is an extension of BertSentenceEmbeddings which combines the embedding of a chunk with the embedding of the surrounding sentence. For each input chunk annotation, it finds the corresponding sentence, computes the BERT sentence embedding of both the chunk and the sentence and averages them. The resulting embeddings are useful in cases, in which one needs a numerical representation of a text chunk which is sensitive to the context it appears in.

This model is a subclass of BertSentenceEmbeddings and shares all parameters with it. It can load any pretrained BertSentenceEmbeddings model. Available models can be found at Models Hub.

Two input columns are required - chunk and sentence.

val embeddings = BertSentenceChunkEmbeddings.pretrained()
  .setInputCols("sentence", "chunk")
  .setOutputCol("sentence_chunk_bert_embeddings")

The default model is "sent_small_bert_L2_768", if no name is provided.

Sources :

BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding

Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks

Example

import spark.implicits._
import com.johnsnowlabs.nlp.base.DocumentAssembler
import com.johnsnowlabs.nlp.annotator.SentenceDetector
import com.johnsnowlabs.nlp.embeddings.BertSentenceEmbeddings
import com.johnsnowlabs.nlp.EmbeddingsFinisher
import org.apache.spark.ml.Pipeline

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

val sentenceDetector = new SentenceDetector()
   .setInputCols("document")
   .setOutputCol("sentence")

val tokenizer = new Tokenizer()
   .setInputCols("sentence")
   .setOutputCol("tokens")

val wordEmbeddings = BertEmbeddings
   .pretrained("biobert_pubmed_base_cased")
   .setInputCols(Array("sentence", "tokens"))
   .setOutputCol("word_embeddings")

val nerModel = MedicalNerModel
   .pretrained("ner_clinical_biobert", "en", "clinical/models")
   .setInputCols(Array("sentence", "tokens", "word_embeddings"))
   .setOutputCol("ner")

 val nerConverter = new NerConverter()
   .setInputCols("sentence", "tokens", "ner")
   .setOutputCol("ner_chunk")

val sentenceChunkEmbeddings = BertSentenceChunkEmbeddings
   .pretrained("sbluebert_base_uncased_mli", "en", "clinical/models")
    .setInputCols(Array("sentence", "ner_chunk"))
    .setOutputCol("sentence_chunk_embeddings")

val pipeline = new Pipeline()
     .setStages(Array(
         documentAssembler,
         sentenceDetector,
         tokenizer,
         wordEmbeddings,
         nerModel,
         nerConverter,
         sentenceChunkEmbeddings))

val sampleText = "Her Diabetes has become type 2 in the last year with her Diabetes." +
   " He complains of swelling in his right forearm."

val testDataset = Seq("").toDS.toDF("text")
val result = pipeline.fit(emptyDataset).transform(testDataset)

result
   .selectExpr("explode(sentence_chunk_embeddings) AS s")
   .selectExpr("s.result", "slice(s.embeddings, 1, 5) AS averageEmbedding")
   .show(truncate=false)

+-----------------------------+-----------------------------------------------------------------+
|                       result|                                                 averageEmbedding|
+-----------------------------+-----------------------------------------------------------------+
|Her Diabetes                 |[-0.31995273, -0.04710883, -0.28973156, -0.1294758, 0.12481072]  |
|type 2                       |[-0.027161136, -0.24613449, -0.0949309, 0.1825444, -0.2252143]   |
|her Diabetes                 |[-0.31995273, -0.04710883, -0.28973156, -0.1294758, 0.12481072]  |
|swelling in his right forearm|[-0.45139068, 0.12400375, -0.0075617577, -0.90806055, 0.12871636]|
+-----------------------------+-----------------------------------------------------------------+
See also

BertEmbeddings for token-level embeddings

BertSentenceEmbeddings for sentence-level embeddings

Annotators Main Page for a list of transformer based embeddings

Linear Supertypes
CheckLicense, HasSafeBatchAnnotate[BertSentenceEmbeddings], HandleExceptionParams, BertSentenceEmbeddings, HasEngine, HasCaseSensitiveProperties, HasStorageRef, HasEmbeddingsProperties, HasProtectedParams, WriteOnnxModel, WriteTensorflowModel, HasBatchedAnnotate[BertSentenceEmbeddings], AnnotatorModel[BertSentenceEmbeddings], CanBeLazy, RawAnnotator[BertSentenceEmbeddings], HasOutputAnnotationCol, HasInputAnnotationCols, HasOutputAnnotatorType, ParamsAndFeaturesWritable, HasFeatures, DefaultParamsWritable, MLWritable, Model[BertSentenceEmbeddings], Transformer, PipelineStage, Logging, Params, Serializable, Serializable, Identifiable, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. BertSentenceChunkEmbeddings
  2. CheckLicense
  3. HasSafeBatchAnnotate
  4. HandleExceptionParams
  5. BertSentenceEmbeddings
  6. HasEngine
  7. HasCaseSensitiveProperties
  8. HasStorageRef
  9. HasEmbeddingsProperties
  10. HasProtectedParams
  11. WriteOnnxModel
  12. WriteTensorflowModel
  13. HasBatchedAnnotate
  14. AnnotatorModel
  15. CanBeLazy
  16. RawAnnotator
  17. HasOutputAnnotationCol
  18. HasInputAnnotationCols
  19. HasOutputAnnotatorType
  20. ParamsAndFeaturesWritable
  21. HasFeatures
  22. DefaultParamsWritable
  23. MLWritable
  24. Model
  25. Transformer
  26. PipelineStage
  27. Logging
  28. Params
  29. Serializable
  30. Serializable
  31. Identifiable
  32. AnyRef
  33. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

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

Type Members

  1. type AnnotationContent = Seq[Row]
    Attributes
    protected
    Definition Classes
    AnnotatorModel
  2. type AnnotatorType = String
    Definition Classes
    HasOutputAnnotatorType
  3. implicit class ProtectedParam[T] extends Param[T]
    Definition Classes
    HasProtectedParams

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
    BertSentenceEmbeddings → AnnotatorModel
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def averageEmbeddings(chunkEmbedding: Array[Float], sentenceEmbedding: Array[Float]): Array[Float]
    Attributes
    protected
  13. def batchAnnotate(batchedAnnotations: Seq[Array[Annotation]]): Seq[Seq[Annotation]]
    Definition Classes
    BertSentenceChunkEmbeddings → BertSentenceEmbeddings → HasBatchedAnnotate
  14. def batchProcess(rows: Iterator[_]): Iterator[Row]
    Definition Classes
    HasBatchedAnnotate
  15. val batchSize: IntParam
    Definition Classes
    HasBatchedAnnotate
  16. def beforeAnnotate(dataset: Dataset[_]): Dataset[_]
    Attributes
    protected
    Definition Classes
    AnnotatorModel
  17. val caseSensitive: BooleanParam
    Definition Classes
    HasCaseSensitiveProperties
  18. final def checkSchema(schema: StructType, inputAnnotatorType: String): Boolean
    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  19. def checkValidEnvironment(spark: Option[SparkSession], scopes: Seq[String]): Unit
    Definition Classes
    CheckLicense
  20. def checkValidScope(scope: String): Unit
    Definition Classes
    CheckLicense
  21. def checkValidScopeAndEnvironment(scope: String, spark: Option[SparkSession], checkLp: Boolean): Unit
    Definition Classes
    CheckLicense
  22. def checkValidScopesAndEnvironment(scopes: Seq[String], spark: Option[SparkSession], checkLp: Boolean): Unit
    Definition Classes
    CheckLicense
  23. val chunkWeight: FloatParam

    Relative weight of chunk embeddings in comparison to sentence embeddings.

    Relative weight of chunk embeddings in comparison to sentence embeddings. The value should between 0 and 1. The default is 0.5, which means the chunk and sentence embeddings are given equal weight.

  24. final def clear(param: Param[_]): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    Params
  25. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  26. val configProtoBytes: IntArrayParam
    Definition Classes
    BertSentenceEmbeddings
  27. def copy(extra: ParamMap): BertSentenceEmbeddings
    Definition Classes
    RawAnnotator → Model → Transformer → PipelineStage → Params
  28. def copyValues[T <: Params](to: T, extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  29. def createDatabaseConnection(database: Name): RocksDBConnection
    Definition Classes
    HasStorageRef
  30. final def defaultCopy[T <: Params](extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  31. val dimension: ProtectedParam[Int]
    Definition Classes
    HasEmbeddingsProperties
  32. val doExceptionHandling: BooleanParam

    If true, exceptions are handled.

    If true, exceptions are handled. If exception causing data is passed to the model, a error annotation is emitted which has the exception message. Processing continues with the next one. This comes with a performance penalty.

    Definition Classes
    HandleExceptionParams
  33. val engine: Param[String]
    Definition Classes
    HasEngine
  34. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  36. def explainParam(param: Param[_]): String
    Definition Classes
    Params
  37. def explainParams(): String
    Definition Classes
    Params
  38. def extraValidate(structType: StructType): Boolean
    Attributes
    protected
    Definition Classes
    RawAnnotator
  39. def extraValidateMsg: String
    Attributes
    protected
    Definition Classes
    RawAnnotator
  40. final def extractParamMap(): ParamMap
    Definition Classes
    Params
  41. final def extractParamMap(extra: ParamMap): ParamMap
    Definition Classes
    Params
  42. val features: ArrayBuffer[Feature[_, _, _]]
    Definition Classes
    HasFeatures
  43. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  44. def get[T](feature: StructFeature[T]): Option[T]
    Attributes
    protected
    Definition Classes
    HasFeatures
  45. def get[K, V](feature: MapFeature[K, V]): Option[Map[K, V]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  46. def get[T](feature: SetFeature[T]): Option[Set[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  47. def get[T](feature: ArrayFeature[T]): Option[Array[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  48. final def get[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  49. def getBatchSize: Int
    Definition Classes
    HasBatchedAnnotate
  50. def getCaseSensitive: Boolean
    Definition Classes
    HasCaseSensitiveProperties
  51. def getChunkWeight: Float

    Get the relative value of the chunk embeddings.

  52. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  53. def getConfigProtoBytes: Option[Array[Byte]]
    Definition Classes
    BertSentenceEmbeddings
  54. final def getDefault[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  55. def getDimension: Int
    Definition Classes
    HasEmbeddingsProperties
  56. def getEngine: String
    Definition Classes
    HasEngine
  57. def getInputCols: Array[String]
    Definition Classes
    HasInputAnnotationCols
  58. def getIsLong: Boolean
    Definition Classes
    BertSentenceEmbeddings
  59. def getLazyAnnotator: Boolean
    Definition Classes
    CanBeLazy
  60. def getMaxSentenceLength: Int
    Definition Classes
    BertSentenceEmbeddings
  61. def getModelIfNotSet: Bert
    Definition Classes
    BertSentenceEmbeddings
  62. final def getOrDefault[T](param: Param[T]): T
    Definition Classes
    Params
  63. final def getOutputCol: String
    Definition Classes
    HasOutputAnnotationCol
  64. def getParam(paramName: String): Param[Any]
    Definition Classes
    Params
  65. def getSignatures: Option[Map[String, String]]
    Definition Classes
    BertSentenceEmbeddings
  66. def getStorageRef: String
    Definition Classes
    HasStorageRef
  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. val inExceptionMode: Boolean
    Attributes
    protected
    Definition Classes
    HasSafeBatchAnnotate
  72. def initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  73. def initializeLogIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  74. val inputAnnotatorTypes: Array[AnnotatorType]

    Input annotator types: DOCUMENT,CHUNK

    Input annotator types: DOCUMENT,CHUNK

    Definition Classes
    BertSentenceChunkEmbeddings → BertSentenceEmbeddings → 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. val isLong: ProtectedParam[Boolean]
    Definition Classes
    BertSentenceEmbeddings
  79. final def isSet(param: Param[_]): Boolean
    Definition Classes
    Params
  80. def isTraceEnabled(): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  81. val lazyAnnotator: BooleanParam
    Definition Classes
    CanBeLazy
  82. def log: Logger
    Attributes
    protected
    Definition Classes
    Logging
  83. def logDebug(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  84. def logDebug(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  85. def logError(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  86. def logError(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  87. def logInfo(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  88. def logInfo(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  89. def logName: String
    Attributes
    protected
    Definition Classes
    Logging
  90. def logTrace(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  91. def logTrace(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  92. def logWarning(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  93. def logWarning(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  94. val maxSentenceLength: IntParam
    Definition Classes
    BertSentenceEmbeddings
  95. def msgHelper(schema: StructType): String
    Attributes
    protected
    Definition Classes
    HasInputAnnotationCols
  96. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  97. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  98. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  99. def onWrite(path: String, spark: SparkSession): Unit
    Definition Classes
    BertSentenceEmbeddings → ParamsAndFeaturesWritable
  100. val optionalInputAnnotatorTypes: Array[String]
    Definition Classes
    HasInputAnnotationCols
  101. val outputAnnotatorType: AnnotatorType

    Output annotator types: CHUNK

    Output annotator types: CHUNK

    Definition Classes
    BertSentenceChunkEmbeddings → BertSentenceEmbeddings → 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[BertSentenceEmbeddings]
    Definition Classes
    Model
  105. def safeBatchAnnotate(batchedAnnotations: Seq[Array[Annotation]]): Seq[Seq[Annotation]]
    Attributes
    protected
    Definition Classes
    HasSafeBatchAnnotate
  106. def save(path: String): Unit
    Definition Classes
    MLWritable
    Annotations
    @Since( "1.6.0" ) @throws( ... )
  107. def sentenceEndTokenId: Int
    Definition Classes
    BertSentenceEmbeddings
  108. def sentenceStartTokenId: Int
    Definition Classes
    BertSentenceEmbeddings
  109. def set[T](param: ProtectedParam[T], value: T): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    HasProtectedParams
  110. def set[T](feature: StructFeature[T], value: T): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  111. def set[K, V](feature: MapFeature[K, V], value: Map[K, V]): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  112. def set[T](feature: SetFeature[T], value: Set[T]): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  113. def set[T](feature: ArrayFeature[T], value: Array[T]): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  114. final def set(paramPair: ParamPair[_]): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    Params
  115. final def set(param: String, value: Any): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    Params
  116. final def set[T](param: Param[T], value: T): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    Params
  117. def setBatchSize(size: Int): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    HasBatchedAnnotate
  118. def setCaseSensitive(value: Boolean): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings → HasCaseSensitiveProperties
  119. def setChunkWeight(value: Float): BertSentenceChunkEmbeddings.this.type

    Sets the wieght of the chunk embeddings relative to the sentence embeddings.

    Sets the wieght of the chunk embeddings relative to the sentence embeddings. The value should between 0 and 1.

  120. def setConfigProtoBytes(bytes: Array[Int]): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings
  121. def setDefault[T](feature: StructFeature[T], value: () ⇒ T): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  122. def setDefault[K, V](feature: MapFeature[K, V], value: () ⇒ Map[K, V]): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  123. def setDefault[T](feature: SetFeature[T], value: () ⇒ Set[T]): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  124. def setDefault[T](feature: ArrayFeature[T], value: () ⇒ Array[T]): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  125. final def setDefault(paramPairs: ParamPair[_]*): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    Params
  126. final def setDefault[T](param: Param[T], value: T): BertSentenceChunkEmbeddings.this.type
    Attributes
    protected
    Definition Classes
    Params
  127. def setDimension(value: Int): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings → HasEmbeddingsProperties
  128. def setDoExceptionHandling(value: Boolean): BertSentenceChunkEmbeddings.this.type

    If true, exceptions are handled.

    If true, exceptions are handled. If exception causing data is passed to the model, a error annotation is emitted which has the exception message. Processing continues with the next one. This comes with a performance penalty.

    Definition Classes
    HandleExceptionParams
  129. final def setInputCols(value: String*): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    HasInputAnnotationCols
  130. def setInputCols(value: Array[String]): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    HasInputAnnotationCols
  131. def setIsLong(value: Boolean): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings
  132. def setLazyAnnotator(value: Boolean): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    CanBeLazy
  133. def setMaxSentenceLength(value: Int): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings
  134. def setModelIfNotSet(spark: SparkSession, tensorflowWrapper: Option[TensorflowWrapper], onnxWrapper: Option[OnnxWrapper]): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings
  135. final def setOutputCol(value: String): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    HasOutputAnnotationCol
  136. def setParent(parent: Estimator[BertSentenceEmbeddings]): BertSentenceEmbeddings
    Definition Classes
    Model
  137. def setSignatures(value: Map[String, String]): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings
  138. def setStorageRef(value: String): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    HasStorageRef
  139. def setVocabulary(value: Map[String, Int]): BertSentenceChunkEmbeddings.this.type
    Definition Classes
    BertSentenceEmbeddings
  140. val signatures: MapFeature[String, String]
    Definition Classes
    BertSentenceEmbeddings
  141. val storageRef: Param[String]
    Definition Classes
    HasStorageRef
  142. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  143. def toString(): String
    Definition Classes
    Identifiable → AnyRef → Any
  144. def tokenize(sentences: Seq[Sentence]): Seq[WordpieceTokenizedSentence]
    Definition Classes
    BertSentenceEmbeddings
  145. final def transform(dataset: Dataset[_]): DataFrame
    Definition Classes
    AnnotatorModel → Transformer
  146. def transform(dataset: Dataset[_], paramMap: ParamMap): DataFrame
    Definition Classes
    Transformer
    Annotations
    @Since( "2.0.0" )
  147. def transform(dataset: Dataset[_], firstParamPair: ParamPair[_], otherParamPairs: ParamPair[_]*): DataFrame
    Definition Classes
    Transformer
    Annotations
    @Since( "2.0.0" ) @varargs()
  148. final def transformSchema(schema: StructType): StructType
    Definition Classes
    RawAnnotator → PipelineStage
  149. def transformSchema(schema: StructType, logging: Boolean): StructType
    Attributes
    protected
    Definition Classes
    PipelineStage
    Annotations
    @DeveloperApi()
  150. val uid: String
    Definition Classes
    BertSentenceChunkEmbeddings → BertSentenceEmbeddings → Identifiable
  151. def validate(schema: StructType): Boolean
    Attributes
    protected
    Definition Classes
    RawAnnotator
  152. def validateStorageRef(dataset: Dataset[_], inputCols: Array[String], annotatorType: String): Unit
    Definition Classes
    HasStorageRef
  153. val vocabulary: MapFeature[String, Int]
    Definition Classes
    BertSentenceEmbeddings
  154. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  155. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  156. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  157. def wrapColumnMetadata(col: Column): Column
    Attributes
    protected
    Definition Classes
    RawAnnotator
  158. def wrapEmbeddingsMetadata(col: Column, embeddingsDim: Int, embeddingsRef: Option[String]): Column
    Attributes
    protected
    Definition Classes
    HasEmbeddingsProperties
  159. def wrapSentenceEmbeddingsMetadata(col: Column, embeddingsDim: Int, embeddingsRef: Option[String]): Column
    Attributes
    protected
    Definition Classes
    HasEmbeddingsProperties
  160. def write: MLWriter
    Definition Classes
    ParamsAndFeaturesWritable → DefaultParamsWritable → MLWritable
  161. def writeOnnxModel(path: String, spark: SparkSession, onnxWrapper: OnnxWrapper, suffix: String, fileName: String): Unit
    Definition Classes
    WriteOnnxModel
  162. def writeOnnxModels(path: String, spark: SparkSession, onnxWrappersWithNames: Seq[(OnnxWrapper, String)], suffix: String, dataFileSuffix: String): Unit
    Definition Classes
    WriteOnnxModel
  163. def writeTensorflowHub(path: String, tfPath: String, spark: SparkSession, suffix: String): Unit
    Definition Classes
    WriteTensorflowModel
  164. def writeTensorflowModel(path: String, spark: SparkSession, tensorflow: TensorflowWrapper, suffix: String, filename: String, configProtoBytes: Option[Array[Byte]]): Unit
    Definition Classes
    WriteTensorflowModel
  165. def writeTensorflowModelV2(path: String, spark: SparkSession, tensorflow: TensorflowWrapper, suffix: String, filename: String, configProtoBytes: Option[Array[Byte]], savedSignatures: Option[Map[String, String]]): Unit
    Definition Classes
    WriteTensorflowModel

Inherited from CheckLicense

Inherited from HasSafeBatchAnnotate[BertSentenceEmbeddings]

Inherited from HandleExceptionParams

Inherited from BertSentenceEmbeddings

Inherited from HasEngine

Inherited from HasCaseSensitiveProperties

Inherited from HasStorageRef

Inherited from HasEmbeddingsProperties

Inherited from HasProtectedParams

Inherited from WriteOnnxModel

Inherited from WriteTensorflowModel

Inherited from HasBatchedAnnotate[BertSentenceEmbeddings]

Inherited from AnnotatorModel[BertSentenceEmbeddings]

Inherited from CanBeLazy

Inherited from RawAnnotator[BertSentenceEmbeddings]

Inherited from HasOutputAnnotationCol

Inherited from HasInputAnnotationCols

Inherited from HasOutputAnnotatorType

Inherited from ParamsAndFeaturesWritable

Inherited from HasFeatures

Inherited from DefaultParamsWritable

Inherited from MLWritable

Inherited from Model[BertSentenceEmbeddings]

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

anno

getParam

param

setParam

Ungrouped