cc.factorie.app.nlp.lexicon.ResourceLexicons.wikipedia

PersonAndRedirect

object PersonAndRedirect extends UnionLexicon

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PersonAndRedirect
  2. UnionLexicon
  3. Lexicon
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def contains[T <: Observation[T]](query: Seq[T]): Boolean

    Definition Classes
    UnionLexiconLexicon
  9. def contains[T <: Observation[T]](query: T): Boolean

    Is this Token (or more generally Observation) a member of a phrase in the lexicon (including single-word phrases)? The query.

    Is this Token (or more generally Observation) a member of a phrase in the lexicon (including single-word phrases)? The query.string will be processed by the lemmatizer. For example if query.string is "New" and query.next.string is "York" and the two-word phrase "New York" is in the lexicon, then this method will return true. But if query.next.string is "shoes" (and "New shoes" is not in the lexicon) this method will return false.

    Definition Classes
    UnionLexiconLexicon
  10. def contains(untokenizedString: String): Boolean

    Is the input String in the lexicon.

    Is the input String in the lexicon. The input is tokenized and lemmatized; if the tokenizer indicates that it is a multi-word phrase, it will be processed by containsWords, otherwise containsWord.

    Definition Classes
    Lexicon
  11. def contains(span: TokenSpan): Boolean

    Definition Classes
    Lexicon
  12. def containsLemmatizedWord(word: String): Boolean

    Is this single word in the lexicon? The input String will not be processed by tokenizer, but will be processed by the lemmatizer.

    Is this single word in the lexicon? The input String will not be processed by tokenizer, but will be processed by the lemmatizer.

    Definition Classes
    UnionLexiconLexicon
  13. def containsLemmatizedWords(words: Seq[String]): Boolean

    Is the pre-tokenized sequence of words in the lexicon? The input words are expected to already be processed by the lemmatizer.

    Is the pre-tokenized sequence of words in the lexicon? The input words are expected to already be processed by the lemmatizer.

    Definition Classes
    UnionLexiconLexicon
  14. def containsWord(word: String): Boolean

    Is this single word in the lexicon? The input String will not be processed by tokenizer, but will be processed by the lemmatizer.

    Is this single word in the lexicon? The input String will not be processed by tokenizer, but will be processed by the lemmatizer.

    Definition Classes
    Lexicon
  15. def containsWords(words: Seq[String]): Boolean

    Is the pre-tokenized sequence of words in the lexicon? Each of the input words will be processed by the lemmatizer.

    Is the pre-tokenized sequence of words in the lexicon? Each of the input words will be processed by the lemmatizer.

    Definition Classes
    Lexicon
  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. def lemmatizer: Lemmatizer

    The string lemmatizer that simplifies lexicon entries and queries before searching for a match.

    The string lemmatizer that simplifies lexicon entries and queries before searching for a match. For example, a common lemmatizer is one that lowercases all strings.

    Definition Classes
    UnionLexiconLexicon
  23. val members: Lexicon*

    Definition Classes
    UnionLexicon
  24. val name: String

    An identifier for this lexicon, suitable for adding as a category to a FeatureVectorVariable[String].

    An identifier for this lexicon, suitable for adding as a category to a FeatureVectorVariable[String].

    Definition Classes
    UnionLexiconLexicon
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. def tokenizer: StringSegmenter

    The string segmenter that breaks a lexicon entries and queries into (potentially) multi-word phrases.

    The string segmenter that breaks a lexicon entries and queries into (potentially) multi-word phrases.

    Definition Classes
    UnionLexiconLexicon
  31. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from UnionLexicon

Inherited from Lexicon

Inherited from AnyRef

Inherited from Any

Ungrouped