Class

org.clulab.processors.clu

CluProcessorWithStanford

Related Doc: package clu

Permalink

class CluProcessorWithStanford extends CluProcessor

Same as CluProcessor but using Stanford dependencies

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CluProcessorWithStanford
  2. CluProcessor
  3. Configured
  4. Processor
  5. ProcessorAnnotator
  6. ProcessorCSController
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CluProcessorWithStanford()

    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

    Annotate the given document, returning an annotated document.

    Annotate the given document, returning an annotated document. The default implementation is an NLP pipeline of side-effecting calls.

    Definition Classes
    CluProcessorProcessor
  5. def annotate(text: String, keepText: Boolean = false): Document

    Permalink

    Annotate the given text string, specify whether to retain the text in the resultant Document.

    Annotate the given text string, specify whether to retain the text in the resultant Document.

    Definition Classes
    ProcessorProcessorAnnotator
  6. def annotateFromSentences(sentences: Iterable[String], keepText: Boolean = false): Document

    Permalink

    Annotate the given sentences, specify whether to retain the text in the resultant Document.

    Annotate the given sentences, specify whether to retain the text in the resultant Document.

    Definition Classes
    ProcessorProcessorAnnotator
  7. def annotateFromTokens(sentences: Iterable[Iterable[String]], keepText: Boolean = false): Document

    Permalink

    Annotate the given tokens, specify whether to retain the text in the resultant Document.

    Annotate the given tokens, specify whether to retain the text in the resultant Document.

    Definition Classes
    ProcessorProcessorAnnotator
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. lazy val chunker: Option[Chunker]

    Permalink
    Definition Classes
    CluProcessor
  10. def chunking(doc: Document): Unit

    Permalink

    Shallow parsing; modifies the document in place

    Shallow parsing; modifies the document in place

    Definition Classes
    CluProcessorProcessor
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. val config: Config

    Permalink
    Definition Classes
    CluProcessor
  13. def contains(argPath: String): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Configured
  14. lazy val depParser: Parser

    Permalink
    Definition Classes
    CluProcessor
  15. def discourse(doc: Document): Unit

    Permalink

    Discourse parsing; modifies the document in place

    Discourse parsing; modifies the document in place

    Definition Classes
    CluProcessorProcessor
  16. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def getArgBoolean(argPath: String, defaultValue: Option[Boolean]): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Configured
  20. def getArgInt(argPath: String, defaultValue: Option[Int]): Int

    Permalink
    Attributes
    protected
    Definition Classes
    Configured
  21. def getArgString(argPath: String, defaultValue: Option[String]): String

    Permalink
    Attributes
    protected
    Definition Classes
    Configured
  22. def getArgStrings(argPath: String, defaultValue: Option[Seq[String]]): Seq[String]

    Permalink
    Attributes
    protected
    Definition Classes
    Configured
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def getConf: Config

    Permalink
    Definition Classes
    CluProcessorConfigured
  25. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  26. val internStrings: Boolean

    Permalink
    Definition Classes
    CluProcessor
  27. final def isInstanceOf[T0]: Boolean

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

    Permalink

    Lematization; modifies the document in place

    Lematization; modifies the document in place

    Definition Classes
    CluProcessorProcessor
  29. lazy val lemmatizer: Lemmatizer

    Permalink
    Definition Classes
    CluProcessor
  30. def mkDocument(text: String, keepText: Boolean = false): Document

    Permalink

    Constructs a document of tokens from free text; includes sentence splitting and tokenization

    Constructs a document of tokens from free text; includes sentence splitting and tokenization

    Definition Classes
    CluProcessorProcessor
  31. def mkDocumentFromSentences(sentences: Iterable[String], keepText: Boolean = false, charactersBetweenSentences: Int = 1): Document

    Permalink

    Constructs a document of tokens from an array of untokenized sentences

    Constructs a document of tokens from an array of untokenized sentences

    Definition Classes
    CluProcessorProcessor
  32. def mkDocumentFromTokens(sentences: Iterable[Iterable[String]], keepText: Boolean = false, charactersBetweenSentences: Int = 1, charactersBetweenTokens: Int = 1): Document

    Permalink

    Constructs a document of tokens from an array of tokenized sentences

    Constructs a document of tokens from an array of tokenized sentences

    Definition Classes
    CluProcessorProcessor
  33. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. lazy val ner: Option[Tagger[String]]

    Permalink
    Definition Classes
    CluProcessor
  35. lazy val nerPostProcessor: Option[SentencePostProcessor]

    Permalink
    Definition Classes
    CluProcessor
  36. final def notify(): Unit

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

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

    Permalink

    Syntactic parsing; modifies the document in place

    Syntactic parsing; modifies the document in place

    Definition Classes
    CluProcessorProcessor
  39. lazy val posPostProcessor: Option[SentencePostProcessor]

    Permalink
    Definition Classes
    CluProcessor
  40. lazy val posTagger: PartOfSpeechTagger

    Permalink
    Definition Classes
    CluProcessor
  41. def recognizeNamedEntities(doc: Document): Unit

    Permalink

    NER; modifies the document in place

    NER; modifies the document in place

    Definition Classes
    CluProcessorProcessor
  42. def relationExtraction(doc: Document): Unit

    Permalink

    Relation extraction; modifies the document in place.

    Relation extraction; modifies the document in place.

    Definition Classes
    CluProcessorProcessor
  43. def resolveCoreference(doc: Document): Unit

    Permalink

    Coreference resolution; modifies the document in place

    Coreference resolution; modifies the document in place

    Definition Classes
    CluProcessorProcessor
  44. def shutdownClient: Unit

    Permalink

    Shutdown the current instance of the client, if any.

    Shutdown the current instance of the client, if any.

    Definition Classes
    ProcessorCSController
  45. def shutdownClientServer: Unit

    Permalink

    Shutdown the remote processor server AND the current instance of the client.

    Shutdown the remote processor server AND the current instance of the client.

    Definition Classes
    ProcessorCSController
  46. def shutdownServer: Unit

    Permalink

    Send the server a message to shutdown actors and terminate the server.

    Send the server a message to shutdown actors and terminate the server.

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

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

    Permalink

    Part of speech tagging

    Part of speech tagging

    Definition Classes
    CluProcessorProcessor
  49. def toString(): String

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

    Permalink
    Definition Classes
    CluProcessor
  51. val useUniversalDependencies: Boolean

    Permalink
    Definition Classes
    CluProcessor
  52. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CluProcessor

Inherited from Configured

Inherited from Processor

Inherited from ProcessorAnnotator

Inherited from ProcessorCSController

Inherited from AnyRef

Inherited from Any

Ungrouped