Package | Description |
---|---|
org.dllearner.algorithms.isle | |
org.dllearner.algorithms.isle.index | |
org.dllearner.algorithms.isle.textretrieval |
Modifier and Type | Method and Description |
---|---|
List<Token> |
EntityTokenizer.get(Object key) |
Modifier and Type | Method and Description |
---|---|
List<Token> |
EntityCandidatesTrie.getGeneratingStringForLongestMatch(List<Token> tokens)
Returns the string on which this entry is based on.
|
List<Token> |
SimpleEntityCandidatesTrie.getGeneratingStringForLongestMatch(List<Token> tokens) |
List<Token> |
TokenTree.getLongestMatch(List<Token> tokens)
Returns the list of tokens which are the longest match with entities assigned in this tree.
|
List<Token> |
EntityCandidatesTrie.getLongestMatchingText(List<Token> tokens)
Gets the longest matching string
|
List<Token> |
SimpleEntityCandidatesTrie.getLongestMatchingText(List<Token> tokens) |
List<Token> |
TokenTree.getOriginalTokensForLongestMatch(List<Token> tokens)
Returns the original ontology tokens for the longest match
|
ArrayList<Token> |
Annotation.getTokens() |
List<Token> |
TextDocument.getTokensStartingAtToken(Token start,
boolean ignorePunctuation)
Returns a list containing all successive tokens from this document starting at the given start
token.
|
List<Token> |
TextDocument.getTokensStartingAtToken(Token start,
int numberOfTokens,
boolean ignorePunctuation)
Returns a list containing
numberOfTokens successive tokens from this document starting at the given start
token. |
Modifier and Type | Method and Description |
---|---|
int |
Token.compareTo(Token other) |
boolean |
Token.equalsWithAlternativeForms(Token other)
Compares the given token to this one including alternative forms.
|
String |
TextDocument.getContentStartingAtToken(Token start,
SurfaceFormLevel l)
Returns a string containing all tokens starting at the token
start until the end of the list. |
List<Token> |
TextDocument.getTokensStartingAtToken(Token start,
boolean ignorePunctuation)
Returns a list containing all successive tokens from this document starting at the given start
token.
|
List<Token> |
TextDocument.getTokensStartingAtToken(Token start,
int numberOfTokens,
boolean ignorePunctuation)
Returns a list containing
numberOfTokens successive tokens from this document starting at the given start
token. |
Modifier and Type | Method and Description |
---|---|
void |
TokenTree.add(List<Token> tokens,
org.semanticweb.owlapi.model.OWLEntity entity)
Adds the given entity to the tree.
|
void |
TokenTree.add(List<Token> tokens,
org.semanticweb.owlapi.model.OWLEntity entity,
List<Token> originalTokens) |
void |
TokenTree.add(List<Token> tokens,
org.semanticweb.owlapi.model.OWLEntity entity,
List<Token> originalTokens) |
void |
TokenTree.add(List<Token> tokens,
Set<org.semanticweb.owlapi.model.OWLEntity> entities) |
void |
TokenTree.add(List<Token> tokens,
Set<org.semanticweb.owlapi.model.OWLEntity> entities,
List<Token> originalTokens)
Adds all given entities to the end of the path resulting from the given tokens.
|
void |
TokenTree.add(List<Token> tokens,
Set<org.semanticweb.owlapi.model.OWLEntity> entities,
List<Token> originalTokens)
Adds all given entities to the end of the path resulting from the given tokens.
|
void |
EntityCandidatesTrie.addEntry(List<Token> s,
org.semanticweb.owlapi.model.OWLEntity e)
Adds an entity to the set of candidates of a string
|
void |
SimpleEntityCandidatesTrie.addEntry(List<Token> s,
org.semanticweb.owlapi.model.OWLEntity e) |
void |
SimpleEntityCandidatesTrie.addEntry(List<Token> s,
org.semanticweb.owlapi.model.OWLEntity e,
List<Token> originalTokens) |
void |
SimpleEntityCandidatesTrie.addEntry(List<Token> s,
org.semanticweb.owlapi.model.OWLEntity e,
List<Token> originalTokens) |
Set<org.semanticweb.owlapi.model.OWLEntity> |
TokenTree.get(List<Token> tokens)
Returns the set of entities located by the given list of tokens.
|
Set<org.semanticweb.owlapi.model.OWLEntity> |
TokenTree.getAllEntities(List<Token> tokens) |
void |
TokenTree.getAllEntitiesRec(List<Token> tokens,
int curPosition,
TokenTree curTree,
HashSet<org.semanticweb.owlapi.model.OWLEntity> resEntities) |
Set<EntityScorePair> |
TokenTree.getAllEntitiesScored(List<Token> tokens) |
void |
TokenTree.getAllEntitiesScoredRec(List<Token> tokens,
int curPosition,
TokenTree curTree,
HashSet<EntityScorePair> resEntities,
Double curScore) |
Set<EntityScorePair> |
EntityCandidatesTrie.getCandidateEntities(List<Token> tokens)
Gets set of candidate entities for a list of tokens
|
Set<EntityScorePair> |
SimpleEntityCandidatesTrie.getCandidateEntities(List<Token> tokens) |
Set<org.semanticweb.owlapi.model.OWLEntity> |
TokenTree.getEntitiesForLongestMatch(List<Token> tokens)
Returns the set of entities assigned to the longest matching token subsequence of the given token sequence.
|
List<Token> |
EntityCandidatesTrie.getGeneratingStringForLongestMatch(List<Token> tokens)
Returns the string on which this entry is based on.
|
List<Token> |
SimpleEntityCandidatesTrie.getGeneratingStringForLongestMatch(List<Token> tokens) |
List<Token> |
TokenTree.getLongestMatch(List<Token> tokens)
Returns the list of tokens which are the longest match with entities assigned in this tree.
|
List<Token> |
EntityCandidatesTrie.getLongestMatchingText(List<Token> tokens)
Gets the longest matching string
|
List<Token> |
SimpleEntityCandidatesTrie.getLongestMatchingText(List<Token> tokens) |
List<Token> |
TokenTree.getOriginalTokensForLongestMatch(List<Token> tokens)
Returns the original ontology tokens for the longest match
|
Constructor and Description |
---|
Annotation(Document referencedDocument,
List<Token> tokens) |
Modifier and Type | Method and Description |
---|---|
Map<List<Token>,Double> |
EntityTextRetriever.getRelevantText(org.semanticweb.owlapi.model.OWLEntity entity)
The method retrieves a string or a set of strings, which is weighted by
importance with respect to the entity.
|
Map<List<Token>,Double> |
AnnotationEntityTextRetriever.getRelevantText(org.semanticweb.owlapi.model.OWLEntity entity) |
Map<org.semanticweb.owlapi.model.OWLEntity,Set<List<Token>>> |
EntityTextRetriever.getRelevantText(org.semanticweb.owlapi.model.OWLOntology ontology) |
Map<org.semanticweb.owlapi.model.OWLEntity,Set<List<Token>>> |
AnnotationEntityTextRetriever.getRelevantText(org.semanticweb.owlapi.model.OWLOntology ontology)
Returns for each entity in the ontology all relevant text, i.e.
|
DL-Learner is licenced under the terms of the GNU General Public License.
Copyright © 2007-2019 Jens Lehmann