![]() |
GrammarScope
4.0.0
|
Public Member Functions | |
DocumentFactory (final Language language) throws Exception | |
boolean | init (final String text) |
List< Token > | getTokens (final int sentenceIdx) throws RuntimeException |
TypedDependencyMode[] | getSupportedModes () throws RuntimeException |
TypedDependencyProvider[] | getSupportedProviders () throws RuntimeException |
DocumentFactory (final Language language) throws Exception | |
boolean | init (final String text) |
List< Token > | getTokens (final int sentenceIdx) throws RuntimeException |
TypedDependencyProvider[] | getSupportedProviders () throws RuntimeException |
TypedDependencyMode[] | getSupportedModes () throws RuntimeException |
![]() | |
AbstractDocumentFactory (final Language language) | |
String | getText () throws RuntimeException |
List< SentenceSegment > | getSentences () throws RuntimeException |
int | getSentenceCount () throws RuntimeException |
List< WordSegment > | getWords () throws RuntimeException |
AParseTree | getParseTree (final int sentenceIdx) throws RuntimeException |
APartsOfSpeech | getPoses (final int sentenceIdx) throws RuntimeException |
AGrammaticalStructure | getGrammaticalStructure (final int sentenceIdx) throws RuntimeException |
ARelationDependents | getRelationDependents (final int sentenceIdx) throws RuntimeException |
ATypedDependencies | getTypedDependencies (final int sentenceIdx, final TypedDependencyProvider provider, final TypedDependencyMode mode) throws RuntimeException |
Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies > > | getTypedDependencies (final int sentenceIdx) throws RuntimeException |
ASemanticGraph | getSemanticGraph (final int sentenceIdx, final TypedDependencyProvider provider, final TypedDependencyMode mode) throws RuntimeException |
Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph > > | getSemanticGraphs (final int sentenceIdx) throws RuntimeException |
ANamedEntities | getNamedEntities (final int sentenceIdx) throws RuntimeException |
Sentiment | getSentiment (final int sentenceIdx) throws RuntimeException |
List< Entailment > | getEntailments (final int sentenceIdx) |
List< Triple > | getTriples (final int sentenceIdx) |
ACoreferences | getCoreferences () throws RuntimeException |
ATextAnalysis | getTextAnalysis (final TypedDependencyProvider provider, final TypedDependencyMode mode) throws RuntimeException |
AAnalysis | getAnalysis (final int sentenceIdx) throws RuntimeException |
String[] | getReports (final int sentenceIdx, final boolean xMLFlag) throws RuntimeException |
String | getReport (final int sentenceIdx, final boolean xMLFlag) throws RuntimeException |
String | getTextReport (final TypedDependencyProvider provider, final TypedDependencyMode mode, final boolean xMLModeFlag) throws RuntimeException |
String[] | getTextReports (final TypedDependencyProvider provider, final TypedDependencyMode mode, final boolean xMLModeFlag) throws RuntimeException |
Static Public Member Functions | |
static void | main (final String[] args) throws Exception |
static void | main (final String[] args) throws Exception |
Static Public Attributes | |
static final int | nTests = 1 |
![]() | |
static final XMLPrinter | xMLPrinter = stanfordMode ? new XMLPrinterStanford() : new XMLPrinterGrammarScope() |
Protected Member Functions | |
Segmentation | getSegmentation () throws RuntimeException |
Tree | getStanfordParseTree (final int sentenceIdx) throws RuntimeException |
GrammaticalStructure | getStanfordGrammaticalStructure (final int sentenceIdx) throws RuntimeException |
Collection< TypedDependency > | getStanfordTypedDependencies (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
Collection< TypedDependency > | getStanfordTypedDependencies2 (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
SemanticGraph | getStanfordSemanticGraph (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
SemanticGraph | getStanfordSemanticGraph2 (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
List< NamedEntity > | getStanfordNamedEntities (final int sentenceIdx) throws RuntimeException |
Sentiment | getStanfordSentiment (final int sentenceIdx) throws RuntimeException |
List< Entailment > | getStanfordEntailments (final int sentenceIdx) throws RuntimeException |
List< Triple > | getStanfordTriples (final int sentenceIdx) throws RuntimeException |
Coreferences | getStanfordCoreferences () throws RuntimeException |
Segmentation | getSegmentation () throws RuntimeException |
Tree | getStanfordParseTree (final int sentenceIdx) throws RuntimeException |
GrammaticalStructure | getStanfordGrammaticalStructure (final int sentenceIdx) throws RuntimeException |
Collection< TypedDependency > | getStanfordTypedDependencies (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
Collection< TypedDependency > | getStanfordTypedDependencies2 (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
SemanticGraph | getStanfordSemanticGraph (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
SemanticGraph | getStanfordSemanticGraph2 (final int sentenceIdx, final TypedDependencyMode mode) throws RuntimeException |
List< NamedEntity > | getStanfordNamedEntities (final int sentenceIdx) throws RuntimeException |
Sentiment | getStanfordSentiment (final int sentenceIdx) throws RuntimeException |
List< Entailment > | getStanfordEntailments (final int sentenceIdx) throws RuntimeException |
List< Triple > | getStanfordTriples (final int sentenceIdx) throws RuntimeException |
Coreferences | getStanfordCoreferences () throws RuntimeException |
Static Private Member Functions | |
static void | mainSync (final String[] args) throws Exception |
static void | mainAsync (final String[] args) throws Exception |
static void | mainSync (final String[] args) throws Exception |
static void | mainAsync (final String[] args) throws Exception |
Private Attributes | |
TextAnalysis | textAnalysis |
Additional Inherited Members | |
![]() | |
final Language | language |
String | text |
final RelationDependentsDirectFactory | relationDependentsDirectFactory |
final Cache< List< Token > > | tokens |
final Cache< Tree > | parseTrees |
final Cache< GrammaticalStructure > | grammaticalStructures |
final Map< TypedDependencyMode, Cache< Collection< TypedDependency > > > | typedDependencies |
final Map< TypedDependencyMode, Cache< Collection< TypedDependency > > > | typedDependencies2 |
Document factory implementation as Stanford Parser EJB client
grammarscope.ejb.client.parser.DocumentFactory.DocumentFactory | ( | final Language | language | ) | throws Exception |
Constructor
language | language |
Exception | exception |
grammarscope.ejb.client.parser.DocumentFactory.DocumentFactory | ( | final Language | language | ) | throws Exception |
Constructor
language | language |
Exception | exception |
|
protected |
Get segmentation
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get segmentation
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get coreferences
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get coreferences
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get entailments
sentenceIdx | sentence index |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get entailments
sentenceIdx | sentence index |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get grammatical structure
sentenceIdx | sentence |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get grammatical structure
sentenceIdx | sentence |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get named entities
sentenceIdx | sentence index |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get named entities
sentenceIdx | sentence index |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get parse tree
sentenceIdx | sentence index |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get parse tree
sentenceIdx | sentence index |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get semantic graph
sentenceIdx | sentence |
mode | typed dependency mode |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get semantic graph
sentenceIdx | sentence |
mode | typed dependency mode |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get semantic graph (workflow 2)
sentenceIdx | sentence |
mode | typed dependency mode |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get semantic graph (workflow 2)
sentenceIdx | sentence |
mode | typed dependency mode |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get sentiment
sentenceIdx | sentence index |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get sentiment
sentenceIdx | sentence index |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get triples
sentenceIdx | sentence index |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get triples
sentenceIdx | sentence index |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get typed dependencies
sentenceIdx | sentence |
mode | typed dependency mode |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get typed dependencies
sentenceIdx | sentence |
mode | typed dependency mode |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get typed dependencies (workflow 2)
sentenceIdx | sentence |
mode | typed dependency mode |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
protected |
Get typed dependencies (workflow 2)
sentenceIdx | sentence |
mode | typed dependency mode |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
TypedDependencyMode [] grammarscope.ejb.client.parser.DocumentFactory.getSupportedModes | ( | ) | throws RuntimeException |
Get supported typed dependency modes
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
TypedDependencyMode [] grammarscope.ejb.client.parser.DocumentFactory.getSupportedModes | ( | ) | throws RuntimeException |
Get supported typed dependency modes
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
TypedDependencyProvider [] grammarscope.ejb.client.parser.DocumentFactory.getSupportedProviders | ( | ) | throws RuntimeException |
Get supported typed dependency providers
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
TypedDependencyProvider [] grammarscope.ejb.client.parser.DocumentFactory.getSupportedProviders | ( | ) | throws RuntimeException |
Get supported typed dependency providers
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
List<Token> grammarscope.ejb.client.parser.DocumentFactory.getTokens | ( | final int | sentenceIdx | ) | throws RuntimeException |
Get tokens
sentenceIdx | sentence index |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
List<Token> grammarscope.ejb.client.parser.DocumentFactory.getTokens | ( | final int | sentenceIdx | ) | throws RuntimeException |
Get tokens
sentenceIdx | sentence index |
RuntimeException | exception |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
boolean grammarscope.ejb.client.parser.DocumentFactory.init | ( | final String | text | ) |
Init processing
text | input text |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
boolean grammarscope.ejb.client.parser.DocumentFactory.init | ( | final String | text | ) |
Init processing
text | input text |
Reimplemented from grammarscope.glue.AbstractDocumentFactory.
|
static |
|
static |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
static |
|
private |
Analysis