Packages

object StanfordParser

Interface to the Stanford parser, handling (inline) TeX by separating tokenizing and POS tagging from parsing. Parsing is done by the texParse method

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StanfordParser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class TeXParsed(preraw: String, wordTags: Vector[(String, String)] = baseWordTags, mweSubs: Vector[(Vector[String], TaggedWord)] = baseMweSubs) extends Product with Serializable

Value Members

  1. val baseMweSubs: Vector[(Vector[String], TaggedWord)]
  2. val baseWordTags: Vector[(String, String)]
  3. def coreLabels(s: String): List[CoreLabel]
  4. lazy val gsf: GrammaticalStructureFactory
  5. val lp: LexicalizedParser
  6. def mergeSubs(mwe: Vector[String], tw: TaggedWord)(tws: Vector[TaggedWord]): Vector[TaggedWord]
  7. def mergeTag(mwe: Vector[String], tag: String)(tws: Vector[TaggedWord]): Vector[TaggedWord]
  8. def parse(s: String): Tree
  9. def proseTree(s: String, wordTags: Vector[(String, String)] = baseWordTags, mweSubs: Vector[(Vector[String], TaggedWord)] = baseMweSubs): ProseTree
  10. def reTag(word: String, tag: String)(tw: TaggedWord): TaggedWord
  11. val tagger: MaxentTagger
  12. def texDisplay(s: String): MatchIterator
  13. def texInline(s: String): MatchIterator
  14. def texParse(s: String, wordTags: Vector[(String, String)] = baseWordTags, mweSubs: Vector[(Vector[String], TaggedWord)] = baseMweSubs): Tree
  15. lazy val tlp: PennTreebankLanguagePack
  16. val tokenizerFactory: TokenizerFactory[CoreLabel]
  17. def wordNetTags(tws: Vector[TaggedWord], depth: Int): Vector[Vector[TaggedWord]]
  18. def words(s: String): Buffer[Word]