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 DependencyParsedSentence(tokens: Array[WordWithDependency]) extends Product with Serializable

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

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

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

    Permalink

    structure representing a sentence and its boundaries

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

    Permalink
  7. 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

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

    Permalink

    Word tag pair

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

    Permalink

    Internal structure for a sentence that is split into tokens

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

    Permalink

Value Members

  1. object Annotated

    Permalink
  2. object DependencyParsed extends Annotated[DependencyParsedSentence]

    Permalink
  3. object NerTagged extends Tagged[NerTaggedSentence]

    Permalink
  4. object PosTagged extends Tagged[PosTaggedSentence]

    Permalink
  5. object Sentence extends Serializable

    Permalink
  6. object SentenceSplit extends Annotated[Sentence]

    Permalink

    Helper object to work work with Sentence

  7. object TaggedSentence extends Serializable

    Permalink
  8. object TokenizedWithSentence extends Annotated[TokenizedSentence]

    Permalink

Ungrouped