|
static void | makeText (final String substring, final Segment segment, final int from0, final StringBuffer sb) |
|
static void | makeText (final String substring, final Segment segment, final StringBuffer sb) |
|
|
static< T > List< T > | processMaps (final CoreMap map, final Class<? extends CoreAnnotation< List< CoreMap >>> elementAnnotationClass, final IProcessor< T > processor) |
|
static< T > List< T > | processLabels (final CoreMap map, final Class<? extends CoreAnnotation< List< CoreLabel >>> elementAnnotationClass, final IProcessor< T > processor) |
|
static< T > List< List< T > > | processSub (final CoreMap map, @SuppressWarnings("SameParameterValue") final Class<? extends CoreAnnotation< List< CoreMap >>> elementAnnotationClass, @SuppressWarnings("SameParameterValue") final Class<? extends CoreAnnotation< List< CoreLabel >>> subElementAnnotationClass, final IProcessor< T > processor) |
|
static< T > List< T > | getAnnotations (final CoreMap map, @SuppressWarnings("SameParameterValue") final Class<? extends CoreAnnotation< List< CoreLabel >>> class1, final Class<? extends CoreAnnotation< T >> class2) |
|
static< T > List< List< T > > | getTokenAnnotations (final CoreMap map, final Class<? extends CoreAnnotation< T >> clazz) |
|
static Class<? extends TypedDependenciesAnnotation > | typedDependencyModeToAnnotationClass (final TypedDependencyMode mode) |
|
static Class<? extends TypedDependenciesAnnotation > | typedDependencyModeToAnnotation2Class (final TypedDependencyMode mode) |
|
static Class<? extends SemanticGraphAnnotation > | semanticGraphModeToAnnotationClass (final TypedDependencyMode mode) |
|
static Class<? extends SemanticGraphAnnotation > | semanticGraphModeToAnnotation2Class (final TypedDependencyMode mode) |
|
static List< WordSegment > | makeWordSegments (final List< Integer > begins, final List< Integer > ends) |
|
static List< NamedEntity > | makeNamedEntities (final CoreMap map) |
|
Pipeline
- Author
- Bernard Bou
◆ Pipeline() [1/2]
grammarscope.server.corenlp.Pipeline.Pipeline |
( |
| ) |
|
◆ Pipeline() [2/2]
grammarscope.server.corenlp.Pipeline.Pipeline |
( |
final Properties |
properties0 | ) |
|
Constructor
- Parameters
-
properties0 | pipeline properties |
◆ getAnnotations()
static <T> List<T> grammarscope.server.corenlp.Pipeline.getAnnotations |
( |
final CoreMap |
map, |
|
|
@SuppressWarnings("SameParameterValue") final Class<? extends CoreAnnotation< List< CoreLabel >>> |
class1, |
|
|
final Class<? extends CoreAnnotation< T >> |
class2 |
|
) |
| |
|
staticprivate |
Get annotations
- Parameters
-
map | annotation map |
class1 | selector class at first level |
class2 | selector class at second level |
<T> | type of returned list element |
- Returns
- list of annotation values
◆ getBreadthAnalyses()
static List<BreadthAnalysis> grammarscope.server.corenlp.Pipeline.getBreadthAnalyses |
( |
final Annotation |
document | ) |
|
|
static |
Analysis
- Parameters
-
- Returns
- list of breadth analyses
◆ getCapabilities()
static long grammarscope.server.corenlp.Pipeline.getCapabilities |
( |
| ) |
|
|
static |
Capabilities
- Returns
- capabilities
◆ getCharBegins()
static List<List<Integer> > grammarscope.server.corenlp.Pipeline.getCharBegins |
( |
final Annotation |
document | ) |
|
|
static |
Get character offset begins
- Parameters
-
- Returns
- list of list of character offset begins
◆ getCharEnds()
static List<List<Integer> > grammarscope.server.corenlp.Pipeline.getCharEnds |
( |
final Annotation |
document | ) |
|
|
static |
Get character offset ends
- Parameters
-
- Returns
- list of list of character offset begins
◆ getConstituencyParseModel()
String grammarscope.server.corenlp.Pipeline.getConstituencyParseModel |
( |
| ) |
|
◆ getCoreferenceIndices()
static List<List<Integer> > grammarscope.server.corenlp.Pipeline.getCoreferenceIndices |
( |
final Annotation |
document | ) |
|
|
static |
Get coreference cluster indices
- Parameters
-
- Returns
- list of list of coreference cluster indices
◆ getCoreferences()
static Map<Integer, CorefChain> grammarscope.server.corenlp.Pipeline.getCoreferences |
( |
final Annotation |
document | ) |
|
|
static |
Get coreferences. This is the coreference link graph. Each chain stores a set of mentions that link to each other, along with a method for getting the most representative mention. Both sentence and token offsets start at 1!
- Parameters
-
- Returns
- indexed coreference chains
◆ getDependencyParseModel()
String grammarscope.server.corenlp.Pipeline.getDependencyParseModel |
( |
| ) |
|
◆ getDepthAnalyses()
static List<DepthAnalysis> grammarscope.server.corenlp.Pipeline.getDepthAnalyses |
( |
final Annotation |
document | ) |
|
|
static |
Analysis
- Parameters
-
- Returns
- list of depth analyses
◆ getGrammaticalRelationModel()
String grammarscope.server.corenlp.Pipeline.getGrammaticalRelationModel |
( |
| ) |
|
◆ getNamedEntities()
static List<List<String> > grammarscope.server.corenlp.Pipeline.getNamedEntities |
( |
final Annotation |
document | ) |
|
|
static |
Get named entities
- Parameters
-
- Returns
- list of list of named entities
◆ getParseTrees()
static List<Tree> grammarscope.server.corenlp.Pipeline.getParseTrees |
( |
final Annotation |
document | ) |
|
|
static |
Parse
- Parameters
-
- Returns
- list of parse trees
◆ getPipelineProperties()
Properties grammarscope.server.corenlp.Pipeline.getPipelineProperties |
( |
| ) |
|
Get pipeline properties
- Returns
- pipeline properties
◆ getPoses()
static List<List<String> > grammarscope.server.corenlp.Pipeline.getPoses |
( |
final Annotation |
document | ) |
|
|
static |
Get parts-of-speech
- Parameters
-
- Returns
- list of list of parts-of-speech
◆ getPosTaggerModel()
String grammarscope.server.corenlp.Pipeline.getPosTaggerModel |
( |
| ) |
|
◆ getSemanticGraphs()
static List<SemanticGraph> grammarscope.server.corenlp.Pipeline.getSemanticGraphs |
( |
final Annotation |
document, |
|
|
final TypedDependencyMode |
mode |
|
) |
| |
|
static |
Semantic graphs
- Parameters
-
document | document |
mode | typed dependency mode |
- Returns
- list of semantic graphs
◆ getTextBreadthAnalysis()
static TextBreadthAnalysis grammarscope.server.corenlp.Pipeline.getTextBreadthAnalysis |
( |
final Annotation |
document | ) |
|
|
static |
Text Analysis
- Parameters
-
- Returns
- text breadth analysis
◆ getTextDepthAnalysis()
static TextDepthAnalysis grammarscope.server.corenlp.Pipeline.getTextDepthAnalysis |
( |
final Annotation |
document | ) |
|
|
static |
Text Analysis
- Parameters
-
- Returns
- text depth analysis
◆ getTokenAnnotations()
static <T> List<List<T> > grammarscope.server.corenlp.Pipeline.getTokenAnnotations |
( |
final CoreMap |
map, |
|
|
final Class<? extends CoreAnnotation< T >> |
clazz |
|
) |
| |
|
staticprivate |
Get token annotations
- Parameters
-
map | annotation map (document level) |
clazz | selector class at Token level |
<T> | type of returned list element |
- Returns
- list of list of annotation values
◆ getTokenizeModel()
String grammarscope.server.corenlp.Pipeline.getTokenizeModel |
( |
| ) |
|
◆ getTypedDependencies()
static List<Collection<TypedDependency> > grammarscope.server.corenlp.Pipeline.getTypedDependencies |
( |
final Annotation |
document, |
|
|
final TypedDependencyMode |
mode |
|
) |
| |
|
static |
Typed Dependencies
- Parameters
-
document | document |
mode | typed dependency mode |
- Returns
- list of typed dependencies
◆ getWords()
static List<List<String> > grammarscope.server.corenlp.Pipeline.getWords |
( |
final Annotation |
document | ) |
|
|
static |
Get words
- Parameters
-
- Returns
- list of list of words
◆ isValid()
boolean grammarscope.server.corenlp.Pipeline.isValid |
( |
| ) |
|
Whether pipeline is valid
- Returns
- whether pipeline is valid
◆ main()
static void grammarscope.server.corenlp.Pipeline.main |
( |
final String[] |
args | ) |
throws IOException |
|
static |
Main
- Parameters
-
- Exceptions
-
◆ makeDefaultProperties()
static Properties grammarscope.server.corenlp.Pipeline.makeDefaultProperties |
( |
| ) |
|
|
static |
Make default pipeline properties
- Returns
- default pipeline properties
◆ makeNamedEntities()
static List<NamedEntity> grammarscope.server.corenlp.Pipeline.makeNamedEntities |
( |
final CoreMap |
map | ) |
|
|
staticprivate |
Make named entities
- Parameters
-
map | sentence annotation map |
- Returns
- named entities
◆ makePipelineProperties()
static Properties grammarscope.server.corenlp.Pipeline.makePipelineProperties |
( |
final Properties |
properties0 | ) |
|
|
static |
Make pipeline properties
- Parameters
-
properties0 | properties to read values from |
- Returns
- pipeline properties
◆ makeText() [1/3]
static String grammarscope.server.corenlp.Pipeline.makeText |
( |
final List< String > |
tokens, |
|
|
final List< WordSegment > |
wordSegments |
|
) |
| |
|
static |
Make text from tokens and segments
- Parameters
-
tokens | tokens |
wordSegments | word segments |
- Returns
- text
◆ makeText() [2/3]
static void grammarscope.server.corenlp.Pipeline.makeText |
( |
final String |
substring, |
|
|
final Segment |
segment, |
|
|
final int |
from0, |
|
|
final StringBuffer |
sb |
|
) |
| |
|
staticpackage |
Make text from string, its start and segment
- Parameters
-
substring | text fragment |
segment | fragment's segment |
from0 | fragment's start |
sb | string sb |
◆ makeText() [3/3]
static void grammarscope.server.corenlp.Pipeline.makeText |
( |
final String |
substring, |
|
|
final Segment |
segment, |
|
|
final StringBuffer |
sb |
|
) |
| |
|
staticpackage |
Make text from string and its segment
- Parameters
-
substring | substring |
segment | its segment |
sb | string sb |
◆ makeWordSegments()
static List<WordSegment> grammarscope.server.corenlp.Pipeline.makeWordSegments |
( |
final List< Integer > |
begins, |
|
|
final List< Integer > |
ends |
|
) |
| |
|
staticprivate |
Make word segments from positions
- Parameters
-
begins | segment begins |
ends | segment ends |
- Returns
- word segments
◆ print()
void grammarscope.server.corenlp.Pipeline.print |
( |
final Annotation |
document, |
|
|
final PrintWriter |
out, |
|
|
final boolean |
xMLFlag |
|
) |
| throws IOException |
Print document
- Parameters
-
document | document |
out | print writer |
xMLFlag | whether to output in XML format |
- Exceptions
-
◆ process()
Annotation grammarscope.server.corenlp.Pipeline.process |
( |
final String |
text | ) |
|
Pipeline-process text
- Parameters
-
- Returns
- document
◆ processFile()
Annotation grammarscope.server.corenlp.Pipeline.processFile |
( |
final String |
file | ) |
|
Pipeline-process file (path)
- Parameters
-
- Returns
- document
◆ processLabels()
static <T> List<T> grammarscope.server.corenlp.Pipeline.processLabels |
( |
final CoreMap |
map, |
|
|
final Class<? extends CoreAnnotation< List< CoreLabel >>> |
elementAnnotationClass, |
|
|
final IProcessor< T > |
processor |
|
) |
| |
|
staticprivate |
Process this annotation map
- Parameters
-
map | annotation map |
elementAnnotationClass | element selector class |
processor | processor |
<T> | type of returned list element |
- Returns
- list of processed elements
◆ processMaps()
static <T> List<T> grammarscope.server.corenlp.Pipeline.processMaps |
( |
final CoreMap |
map, |
|
|
final Class<? extends CoreAnnotation< List< CoreMap >>> |
elementAnnotationClass, |
|
|
final IProcessor< T > |
processor |
|
) |
| |
|
staticprivate |
Process this annotation map
- Parameters
-
map | annotation map |
elementAnnotationClass | element selector class |
processor | processor |
<T> | type of returned list element |
- Returns
- list of processed elements
◆ processSub()
static <T> List<List<T> > grammarscope.server.corenlp.Pipeline.processSub |
( |
final CoreMap |
map, |
|
|
@SuppressWarnings("SameParameterValue") final Class<? extends CoreAnnotation< List< CoreMap >>> |
elementAnnotationClass, |
|
|
@SuppressWarnings("SameParameterValue") final Class<? extends CoreAnnotation< List< CoreLabel >>> |
subElementAnnotationClass, |
|
|
final IProcessor< T > |
processor |
|
) |
| |
|
staticprivate |
Process this annotation map
- Parameters
-
map | annotation map |
elementAnnotationClass | element selector class |
subElementAnnotationClass | subelement selector class |
processor | processor |
<T> | type of returned list element |
- Returns
- list of list processed sub elements
◆ processURL()
Annotation grammarscope.server.corenlp.Pipeline.processURL |
( |
final URL |
url | ) |
|
Pipeline-process file (url)
- Parameters
-
- Returns
- document
◆ reset()
void grammarscope.server.corenlp.Pipeline.reset |
( |
| ) |
|
◆ semanticGraphModeToAnnotation2Class()
Semantic graph mode to Annotation class
- Parameters
-
mode | typed dependency mode |
- Returns
- matching annotation class
◆ semanticGraphModeToAnnotationClass()
Semantic graph mode to Annotation class
- Parameters
-
mode | typed dependency mode |
- Returns
- matching annotation class
◆ toString() [1/2]
String grammarscope.server.corenlp.Pipeline.toString |
( |
final Annotation |
document | ) |
throws IOException |
Document to string
- Parameters
-
- Returns
- string
- Exceptions
-
◆ toString() [2/2]
String grammarscope.server.corenlp.Pipeline.toString |
( |
final Annotation |
document, |
|
|
final boolean |
xMLFlag |
|
) |
| throws IOException |
Document to string
- Parameters
-
document | document |
xMLFlag | whether output is in XML format |
- Returns
- document string
- Exceptions
-
◆ toXMLString()
String grammarscope.server.corenlp.Pipeline.toXMLString |
( |
final Annotation |
document | ) |
throws IOException |
Document to XML string
- Parameters
-
- Returns
- string in XML format
- Exceptions
-
◆ typedDependencyModeToAnnotation2Class()
◆ typedDependencyModeToAnnotationClass()
Typed dependencies mode to Annotation class
- Parameters
-
mode | typed dependency mode |
- Returns
- matching annotation class
◆ PIPELINE_ANNOTATORS
final String grammarscope.server.corenlp.Pipeline.PIPELINE_ANNOTATORS = "annotators" |
|
staticpackage |
◆ PIPELINE_DEPPARSER_MODEL
final String grammarscope.server.corenlp.Pipeline.PIPELINE_DEPPARSER_MODEL = "depparse.model" |
|
staticpackage |
◆ PIPELINE_DEPPARSER_OPTIONS
final String grammarscope.server.corenlp.Pipeline.PIPELINE_DEPPARSER_OPTIONS = "depparse.options" |
|
staticpackage |
◆ PIPELINE_LANGUAGE
final String grammarscope.server.corenlp.Pipeline.PIPELINE_LANGUAGE = "language" |
|
staticpackage |
◆ PIPELINE_PARSER_MODEL
final String grammarscope.server.corenlp.Pipeline.PIPELINE_PARSER_MODEL = "parse.model" |
|
staticpackage |
◆ PIPELINE_PARSER_OPTIONS
final String grammarscope.server.corenlp.Pipeline.PIPELINE_PARSER_OPTIONS = "parse.flags" |
|
staticpackage |
◆ PIPELINE_POSTAGGER_MODEL
final String grammarscope.server.corenlp.Pipeline.PIPELINE_POSTAGGER_MODEL = "pos.model" |
|
staticpackage |
◆ PIPELINE_TOKENIZE_LANGUAGE
final String grammarscope.server.corenlp.Pipeline.PIPELINE_TOKENIZE_LANGUAGE = "tokenize.language" |
|
staticpackage |
◆ properties
final Properties grammarscope.server.corenlp.Pipeline.properties |
|
protected |
◆ stanfordPipeline
StanfordCoreNLP grammarscope.server.corenlp.Pipeline.stanfordPipeline |
|
protected |
The documentation for this class was generated from the following file:
- grammarscope/server/src/main/java/grammarscope/server/corenlp/Pipeline.java