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. Tokenization is ours. All others implemented using Stanford's CoreNLP tools. User: mihais Date: 2/25/15 Last Modified: Update for Scala 2.12: java converters. Last modified 06/11/2018: Switched to our internal tokenizer

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

Instance Constructors

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

    Permalink
  2. new ShallowNLPProcessor(tokenizerPostProcessor: Option[TokenizerStep], internStrings: Boolean, withChunks: Boolean)

    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 → ProcessorAnnotator
  6. def annotateFromSentences(sentences: Iterable[String], keepText: Boolean): Document

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

    Permalink
    Definition Classes
    Processor → ProcessorAnnotator
  8. final def asInstanceOf[T0]: T0

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

    Permalink
  10. lazy val chunker: CRFChunker

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

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

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

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

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

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

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

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

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

    Permalink
  20. val internStrings: Boolean

    Permalink
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def lemmatize(doc: Document): Unit

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

    Permalink
  24. def mkChunker: CRFChunker

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

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

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

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

    Permalink
  29. def mkNer: StanfordCoreNLP

    Permalink
  30. def mkPosTagger: StanfordCoreNLP

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

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

    Permalink
    Definition Classes
    AnyRef
  33. lazy val ner: StanfordCoreNLP

    Permalink
  34. def newStanfordCoreNLP(props: Properties, enforceRequirements: Boolean = true): StanfordCoreNLP

    Permalink
    Attributes
    protected
  35. final def notify(): Unit

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

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

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

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

  40. def recognizeNamedEntities(doc: Document): Unit

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

    Permalink
    Definition Classes
    ShallowNLPProcessor → Processor
  42. def shutdownClient: Unit

    Permalink
    Definition Classes
    ProcessorCSController
  43. def shutdownClientServer: Unit

    Permalink
    Definition Classes
    ProcessorCSController
  44. def shutdownServer: Unit

    Permalink
    Definition Classes
    ProcessorCSController
  45. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  48. lazy val tokenizer: Tokenizer

    Permalink
  49. val tokenizerPostProcessor: Option[TokenizerStep]

    Permalink
  50. final def wait(): Unit

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

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

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

    Permalink

Inherited from Processor

Inherited from ProcessorAnnotator

Inherited from ProcessorCSController

Inherited from AnyRef

Inherited from Any

Ungrouped