Package | Description |
---|---|
es.ehu.si.ixa.prebmt.analysis |
Provides classes and interfaces for analyzing text.
|
es.ehu.si.ixa.prebmt.parsing |
Provides classes and interfaces for parsing and writing
MonolingualCorpus es through Reader s and Writer s
respectively. |
es.ehu.si.ixa.prebmt.translation |
Provides classes and interfaces for partial text translation.
|
Modifier and Type | Class and Description |
---|---|
class |
EntityRecognizerAnalyzer
A wrapper to apply an
EntityRecognizer after analyzing the text. |
class |
FreelingAnalyzer
An analyzer that uses Freeling as its backend.
|
class |
StanfordCoreNLPAnalyzer
An analyzer that uses Stanford CoreNLP as its backend.
|
Constructor and Description |
---|
EntityRecognizerAnalyzer(Analyzer analyzer,
EntityRecognizer entityRecognizer)
Constructs a new analyzer that contains the given
Analyzer and
EntityRecognizer . |
Constructor and Description |
---|
AnalyzerParser(Analyzer analyzer)
Constructs a new parser with the specified
Analyzer and assuming
that the input text will have a single sentence per line. |
AnalyzerParser(Analyzer analyzer,
boolean sentencePerLine)
Constructs a new parser with the specified
Analyzer . |
ConcurrentAnalyzerParser(Analyzer analyzer)
Constructs a new parser with the specified
Analyzer , assuming
that the input text will have a single sentence per line and which will
make use of as many threads as this machine can run in parallel. |
ConcurrentAnalyzerParser(Analyzer analyzer,
boolean sentencePerLine)
Constructs a new parser with the specified
Analyzer that will
make use of as many threads as this machine can run in parallel. |
ConcurrentAnalyzerParser(Analyzer analyzer,
boolean sentencePerLine,
int nThreads)
Constructs a new parser with the specified
Analyzer . |
ConcurrentAnalyzerParser(Analyzer analyzer,
boolean sentencePerLine,
int nThreads,
int queueSize)
Constructs a new parser with the specified
Analyzer . |
Constructor and Description |
---|
DefaultTranslator(BilingualCorpus corpus,
Analyzer analyzer,
boolean sentencePerLine,
Dictionary dictionary,
Generator generator,
boolean tokenize,
int minTokens)
Constructs a new translator.
|