[
https://issues.apache.org/jira/browse/STANBOL-1183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13800549#comment-13800549
]
Rupert Westenthaler edited comment on STANBOL-1183 at 10/21/13 11:42 AM:
-------------------------------------------------------------------------
# Disambiguation Data
Provides information extracted from the parsed content in a form that makes it
easily consumable by a Disambiguation engine. While the `DisambiguationData`
class will provide information about the whole content item there will be also
a `DisambiguationContext` class that acts as a filter over those data based a
given location within the content (see next section).
{code}
DisambiguationData
extractedEntities :: Set<ExtractedEntity>
disambiguations :: Set<Disambiguation>
{code}
## Extracted Entity
This wraps a `fise:TextAnnotation` with several suggested
fise:EntityAnnotation`.
{code}
ExtractedEntity
mention :: String //fise:selected-text
start :: int //fise:start
end :: int //fise:end
suggestions :: Set<Suggestion>
Suggestion
uri :: String //fise:entity-reference
types :: Set<String> //fise:entity-type
label :: String //fise:entity-label
site :: String //entityhub:site (optional)
confidence :: double //fise:confidence
{code}
## Disambiguation
Represents a disambiguation result for a `Suggestion` of an `ExtractedEntity`.
{code}
Disambiguation
confidence :: double
extractedEntity :: ExtractedEntity
suggestion :: Suggestion
{code}
was (Author: rwesten):
# Disambiguation Data
Provides information extracted from the parsed content in a form that makes it
easily consumable by a Disambiguation engine.
## Extracted Entity
This wraps a `fise:TextAnnotation` with several suggested
fise:EntityAnnotation`.
{code}
ExtractedEntity
mention :: String //fise:selected-text
start :: int //fise:start
end :: int //fise:end
suggestions :: Set<Suggestion>
Suggestion
uri :: String //fise:entity-reference
types :: Set<String> //fise:entity-type
label :: String //fise:entity-label
site :: String //entityhub:site (optional)
confidence :: double //fise:confidence
{code}
## Disambiguation
Represents a disambiguation result for a `Suggestion` of an `ExtractedEntity`.
{code}
Disambiguation
confidence :: double
extractedEntity :: ExtractedEntity
suggestion :: Suggestion
{code}
> Stanbol Disambiguation API
> --------------------------
>
> Key: STANBOL-1183
> URL: https://issues.apache.org/jira/browse/STANBOL-1183
> Project: Stanbol
> Issue Type: New Feature
> Reporter: Rupert Westenthaler
>
> Module providing an API for implementing disambiguation enhancement engines.
--
This message was sent by Atlassian JIRA
(v6.1#6144)