Packages

trait DisambiguatorModelParams extends Params with HasFeatures

Linear Supertypes
HasFeatures, Params, Serializable, Serializable, Identifiable, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. DisambiguatorModelParams
  2. HasFeatures
  3. Params
  4. Serializable
  5. Serializable
  6. Identifiable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def copy(extra: ParamMap): Params
    Definition Classes
    Params
  2. abstract val uid: String
    Definition Classes
    Identifiable

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. final def clear(param: Param[_]): DisambiguatorModelParams.this.type
    Definition Classes
    Params
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  12. def copyValues[T <: Params](to: T, extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  13. final def defaultCopy[T <: Params](extra: ParamMap): T
    Attributes
    protected
    Definition Classes
    Params
  14. val embeddingTypeParam: Param[String]

    Can be 'bow' for word embeddings or 'sentence' for sentences (Default: sentence)

  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def explainParam(param: Param[_]): String
    Definition Classes
    Params
  18. def explainParams(): String
    Definition Classes
    Params
  19. final def extractParamMap(): ParamMap
    Definition Classes
    Params
  20. final def extractParamMap(extra: ParamMap): ParamMap
    Definition Classes
    Params
  21. val features: ArrayBuffer[Feature[_, _, _]]
    Definition Classes
    HasFeatures
  22. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def get[T](feature: StructFeature[T]): Option[T]
    Attributes
    protected
    Definition Classes
    HasFeatures
  24. def get[K, V](feature: MapFeature[K, V]): Option[Map[K, V]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  25. def get[T](feature: SetFeature[T]): Option[Set[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  26. def get[T](feature: ArrayFeature[T]): Option[Array[T]]
    Attributes
    protected
    Definition Classes
    HasFeatures
  27. final def get[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  28. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. final def getDefault[T](param: Param[T]): Option[T]
    Definition Classes
    Params
  30. def getEmbeddingType: String

    Can be 'bow' for word embeddings or 'sentence' for sentences (Default: sentence)

  31. def getLevenshteinDistanceThresholdParam: Double

    Levenshtein distance threshold to narrow results from prefix search (Default: 0.1)

  32. def getNarrowWithApproximateMatching: Boolean

    Whether to narrow prefix search results with levenstein distance based matching (Default: true)

  33. def getNearMatchingGapParam: Int

    Puts a limit on a string length (by trimming the candidate chunks) during levenshtein-distance based narrowing, len(candidate) - len(entity chunk) > nearMatchingGap (Default: 4).

  34. def getNumFirstChars: Int

    How many characters should be considered for initial prefix search in knowledge base

  35. final def getOrDefault[T](param: Param[T]): T
    Definition Classes
    Params
  36. def getParam(paramName: String): Param[Any]
    Definition Classes
    Params
  37. def getPredictionLimit: Int

    Limit on amount of predictions N for topN predictions (Default: 100)

  38. def getTokenSearch: Boolean

    Whether to search by token or by chunk in knowledge base (Default: true)

  39. final def hasDefault[T](param: Param[T]): Boolean
    Definition Classes
    Params
  40. def hasParam(paramName: String): Boolean
    Definition Classes
    Params
  41. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  42. final def isDefined(param: Param[_]): Boolean
    Definition Classes
    Params
  43. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  44. final def isSet(param: Param[_]): Boolean
    Definition Classes
    Params
  45. val levenshteinDistanceThresholdParam: DoubleParam

    Levenshtein distance threshold to narrow results from prefix search (Default: 0.1)

  46. val narrowWithApproximateMatching: BooleanParam

    Whether to narrow prefix search results with levenstein distance based matching (Default: true)

  47. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  48. val nearMatchingGapParam: IntParam

    Puts a limit on a string length (by trimming the candidate chunks) during levenshtein-distance based narrowing, len(candidate) - len(entity chunk) > nearMatchingGap (Default: 4).

  49. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  50. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  51. val numFirstChars: IntParam

    How many characters should be considered for initial prefix search in knowledge base

  52. lazy val params: Array[Param[_]]
    Definition Classes
    Params
  53. val predictionsLimit: IntParam

    Limit on amount of predictions N for topN predictions (Default: 100)

  54. def set[T](feature: StructFeature[T], value: T): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  55. def set[K, V](feature: MapFeature[K, V], value: Map[K, V]): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  56. def set[T](feature: SetFeature[T], value: Set[T]): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  57. def set[T](feature: ArrayFeature[T], value: Array[T]): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  58. final def set(paramPair: ParamPair[_]): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    Params
  59. final def set(param: String, value: Any): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    Params
  60. final def set[T](param: Param[T], value: T): DisambiguatorModelParams.this.type
    Definition Classes
    Params
  61. def setDefault[T](feature: StructFeature[T], value: () ⇒ T): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  62. def setDefault[K, V](feature: MapFeature[K, V], value: () ⇒ Map[K, V]): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  63. def setDefault[T](feature: SetFeature[T], value: () ⇒ Set[T]): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  64. def setDefault[T](feature: ArrayFeature[T], value: () ⇒ Array[T]): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    HasFeatures
  65. final def setDefault(paramPairs: ParamPair[_]*): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    Params
  66. final def setDefault[T](param: Param[T], value: T): DisambiguatorModelParams.this.type
    Attributes
    protected
    Definition Classes
    Params
  67. def setEmbeddingType(v: String): DisambiguatorModelParams.this.type

    Can be 'bow' for word embeddings or 'sentence' for sentences (Default: sentence)

  68. def setLevenshteinDistanceThresholdParam(v: Double): DisambiguatorModelParams.this.type

    Levenshtein distance threshold to narrow results from prefix search (Default: 0.1)

  69. def setNarrowWithApproximateMatching(v: Boolean): DisambiguatorModelParams.this.type

    Whether to narrow prefix search results with levenstein distance based matching (Default: true)

  70. def setNearMatchingGapParam(v: Int): DisambiguatorModelParams.this.type

    Puts a limit on a string length (by trimming the candidate chunks) during levenshtein-distance based narrowing, len(candidate) - len(entity chunk) > nearMatchingGap (Default: 4).

  71. def setNumFirstChars(v: Int): DisambiguatorModelParams.this.type

    How many characters should be considered for initial prefix search in knowledge base

  72. def setPredictionLimit(v: Int): DisambiguatorModelParams.this.type

    Limit on amount of predictions N for topN predictions (Default: 100)

  73. def setTokenSearch(v: Boolean): DisambiguatorModelParams.this.type

    Whether to search by token or by chunk in knowledge base (Default: true)

  74. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  75. def toString(): String
    Definition Classes
    Identifiable → AnyRef → Any
  76. val tokenSearch: BooleanParam

    Whether to search by token or by chunk in knowledge base (Default: true)

  77. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  78. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  79. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from HasFeatures

Inherited from Params

Inherited from Serializable

Inherited from Serializable

Inherited from Identifiable

Inherited from AnyRef

Inherited from Any

getParam

param

setParam

Ungrouped