All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.johnsnowlabs.nlp.annotators.spell.symmetric.SymmetricDeleteParams.scala Maven / Gradle / Ivy

package com.johnsnowlabs.nlp.annotators.spell.symmetric

import org.apache.spark.ml.param.{IntParam, Params}

trait SymmetricDeleteParams extends Params{

  val maxEditDistance = new IntParam(this, "maxEditDistance",
                               "max edit distance characters to derive strings from a word")

  def setMaxEditDistance(value: Int): this.type = set(maxEditDistance, value)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy