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

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

taggedWords

Word tag pairs

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TaggedSentence
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TaggedSentence(indexedTaggedWords: Array[IndexedTaggedWord])
  2. new TaggedSentence(taggedWords: Array[TaggedWord], indexedTaggedWords: Array[IndexedTaggedWord] = Array())

    taggedWords

    Word tag pairs

Value Members

  1. val indexedTaggedWords: Array[IndexedTaggedWord]
  2. def mapWords: Map[String, String]
  3. val taggedWords: Array[TaggedWord]
  4. val tags: Array[String]

    Recurrently needed to access all tags

  5. def tupleWords: Array[(String, String)]

    ready function to return pairwise tagged words

  6. val words: Array[String]

    Recurrently needed to access all words