Package

com.johnsnowlabs.nlp.annotators

common

Permalink

package common

Visibility
  1. Public
  2. All

Type Members

  1. trait Annotated[TResult] extends AnyRef

    Permalink
  2. case class Conll2009Sentence(dependency: String, lemma: String, pos: String, deprel: String, head: Int, sentence: Int, begin: Int, end: Int) extends Product with Serializable

    Permalink
  3. case class DependencyParsedSentence(tokens: Array[WordWithDependency]) extends Product with Serializable

    Permalink
  4. case class IndexedTaggedWord(word: String, tag: String, begin: Int = 0, end: Int = 0) extends Product with Serializable

    Permalink
  5. case class IndexedToken(token: String, begin: Int = 0, end: Int = 0) extends Product with Serializable

    Permalink
  6. class InfixToken extends PreprocessingParser

    Permalink
  7. class PrefixedToken extends PreprocessingParser

    Permalink
  8. trait PreprocessingParser extends AnyRef

    Permalink
  9. case class Sentence(content: String, start: Int, end: Int) extends Product with Serializable

    Permalink

    structure representing a sentence and its boundaries

  10. class SuffixedToken extends PreprocessingParser

    Permalink
  11. trait Tagged[T >: TaggedSentence <: TaggedSentence] extends Annotated[T]

    Permalink
  12. case class TaggedSentence(taggedWords: Array[TaggedWord], indexedTaggedWords: Array[IndexedTaggedWord] = Array()) extends Product with Serializable

    Permalink

    Structure to hold Sentences as list of words and POS-tags

    Structure to hold Sentences as list of words and POS-tags

    taggedWords

    Word tag pairs

  13. case class TaggedWord(word: String, tag: String) extends Product with Serializable

    Permalink

    Word tag pair

  14. case class TokenizedSentence(indexedTokens: Array[IndexedToken]) extends Product with Serializable

    Permalink

    Internal structure for a sentence that is split into tokens

  15. case class WordWithDependency(word: String, begin: Int, end: Int, head: Int) extends Product with Serializable

    Permalink

Value Members

  1. object Annotated

    Permalink
  2. object DependencyParsed extends Annotated[DependencyParsedSentence]

    Permalink
  3. object InfixToken

    Permalink
  4. object LabeledDependency extends Annotated[Conll2009Sentence]

    Permalink
  5. object NerTagged extends Tagged[NerTaggedSentence]

    Permalink
  6. object PosTagged extends Tagged[PosTaggedSentence]

    Permalink
  7. object PrefixedToken

    Permalink
  8. object Sentence extends Serializable

    Permalink
  9. object SentenceSplit extends Annotated[Sentence]

    Permalink

    Helper object to work work with Sentence

  10. object SuffixedToken

    Permalink
  11. object TaggedSentence extends Serializable

    Permalink
  12. object TokenizedWithSentence extends Annotated[TokenizedSentence]

    Permalink

Ungrouped