Class/Object

org.clulab.processors.shallownlp

ShallowNLPProcessor

Related Docs: object ShallowNLPProcessor | package shallownlp

Permalink

class ShallowNLPProcessor extends Processor

A Processor using only shallow analysis: tokenization, lemmatization, POS tagging, and NER. All implemented using Stanford's CoreNLP tools. User: mihais Date: 2/25/15

Linear Supertypes
Processor, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShallowNLPProcessor
  2. Processor
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ShallowNLPProcessor(internStrings: Boolean = true, withChunks: Boolean = true)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def annotate(doc: Document): Document

    Permalink
    Definition Classes
    Processor
  5. def annotate(text: String, keepText: Boolean): Document

    Permalink
    Definition Classes
    Processor
  6. def annotateFromSentences(sentences: Iterable[String], keepText: Boolean): Document

    Permalink
    Definition Classes
    Processor
  7. def annotateFromTokens(sentences: Iterable[Iterable[String]], keepText: Boolean): Document

    Permalink
    Definition Classes
    Processor
  8. def arrayOrNone[T](b: ArrayBuffer[T])(implicit arg0: ClassTag[T]): Option[Array[T]]

    Permalink
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def basicSanityCheck(doc: Document, checkAnnotation: Boolean = true): Option[Annotation]

    Permalink
  11. lazy val chunker: CRFChunker

    Permalink
  12. def chunking(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def discourse(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  15. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def in(s: String): String

    Permalink
  21. val internStrings: Boolean

    Permalink
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def labelSemanticRoles(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  24. def lemmatize(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  25. lazy val lemmatizer: StanfordCoreNLP

    Permalink
  26. def mkChunker: CRFChunker

    Permalink
  27. def mkDocument(text: String, keepText: Boolean): Document

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  28. def mkDocumentFromSentences(sentences: Iterable[String], keepText: Boolean, charactersBetweenSentences: Int = 1): Document

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  29. def mkDocumentFromTokens(sentences: Iterable[Iterable[String]], keepText: Boolean, charactersBetweenSentences: Int = 1, charactersBetweenTokens: Int = 1): Document

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  30. def mkLemmatizer: StanfordCoreNLP

    Permalink
  31. def mkNer: StanfordCoreNLP

    Permalink
  32. def mkPosTagger: StanfordCoreNLP

    Permalink
  33. def mkSentence(annotation: CoreMap): Sentence

    Permalink
  34. def mkTokenizerWithSentenceSplitting: StanfordCoreNLP

    Permalink
  35. def mkTokenizerWithoutSentenceSplitting: StanfordCoreNLP

    Permalink
  36. def namedEntitySanityCheck(doc: Document): Option[Annotation]

    Permalink
  37. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  38. lazy val ner: StanfordCoreNLP

    Permalink
  39. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  40. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  41. def parse(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  42. lazy val posTagger: StanfordCoreNLP

    Permalink
  43. def postprocessTags(annotation: Annotation): Unit

    Permalink

    Hook to allow postprocessing of CoreNLP POS tagging *in place*, overwriting original POS tags This is useful for domain-specific corrections

    Hook to allow postprocessing of CoreNLP POS tagging *in place*, overwriting original POS tags This is useful for domain-specific corrections

    annotation

    The CoreNLP annotation

  44. def postprocessTokens(sentence: CoreMap): List[CoreLabel]

    Permalink
    Attributes
    protected
  45. def postprocessTokens(originalTokens: Array[CoreLabel]): Array[CoreLabel]

    Permalink

    Hook to allow postprocessing of CoreNLP tokenization This is useful for domain-specific corrections, such as the ones in BioNLPProcessor If you change the tokens, make sure to store them back in the sentence!

    Hook to allow postprocessing of CoreNLP tokenization This is useful for domain-specific corrections, such as the ones in BioNLPProcessor If you change the tokens, make sure to store them back in the sentence!

    originalTokens

    Input CoreNLP sentence

    returns

    The modified tokens

  46. def preprocessSentences(origSentences: Iterable[String]): Iterable[String]

    Permalink
    Definition Classes
    Processor
  47. def preprocessText(origText: String): String

    Permalink
    Definition Classes
    Processor
  48. def preprocessTokens(origSentences: Iterable[Iterable[String]]): Iterable[Iterable[String]]

    Permalink
    Definition Classes
    Processor
  49. def recognizeNamedEntities(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  50. def resolveCoreference(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  51. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  52. def tagPartsOfSpeech(doc: Document): Unit

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  53. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  54. lazy val tokenizerWithSentenceSplitting: StanfordCoreNLP

    Permalink
  55. lazy val tokenizerWithoutSentenceSplitting: StanfordCoreNLP

    Permalink
  56. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  59. val withChunks: Boolean

    Permalink

Inherited from Processor

Inherited from AnyRef

Inherited from Any

Ungrouped