LiFR
LiFR, previously known as f-PocketKRHyper after the crisp reasoner it has extended, is a Lighweight Fuzzy semantic Reasoner, which for the purposes of the LinkedTV EU project is employed and extended to perform content and concept filtering based on semantic descriptions of a user profile and content items. It is released under the GNU LGPL.
Jump to:
LinkedTV concept and content filtering REST API
Description
The algorithmic foundation of LiFR lies in the crisp reasoner it has extended: the Pocket KRHyper mobile reasoner. Thus it is a first-order model generating reasoner implementing the hyper-tableaux calculus. DL reasoning in Pocket KRHyper is performed through translating DLs axioms to first order clauses, as portrayed in the translation primitives of Pocket KRHyper. The original Description Logic (DL) interface provided by Pocket KRHyper was extended to support added semantics and fuzzy operators’ transformation into the native first order clausal implementation.
LiFR has extended Pocket KRHyper to fuzziness and has made improvements on the original implementation efficiency-wise and with respect to disjunction handling. The first extension within CERTH, named then f-PocketKRHyper, was a J2ME application like its crisp predecessor. Since then, it was transformed to JavaSE with an interest in rendering it capable of multi-platform implementations, while maintaining the original implementation's principles of a lightweight and efficient algorithm, capable of performing reasoning services in limited resource devices, such as smartphones, tablets, set-top boxes etc.
The general inferencing services provided by LiFR are:
- Satisfiability checking
- Subsumption checking
- Fuzzy entailment
- GLB (greatest lower bound) calculation
- Global GLB calculation
Extending Pocket KRHyper, LiFR’s default reasoning service consists in the generation of all models that satisfy the input fuzzy knowledge base, thereby providing native support for the computation of the global GLB, i.e the GLB for all combinations of individuals and concepts.
LiFR supports fuzzy DLP (f-DLP) semantics, except that as of yet fuzzy assertions are restricted to concepts only, with an added support for weighted concept modifiers, while role assertions are treated as crisp with an imposed membership degree of ≥ 1.0 .
f-DLP is the fuzzy extension of DLP, a tractable knowledge representation fragment, closely related to the OWL 2 RL profile, that combines classical DLs with Logic Programs (LP), thus combining ontologies with rules. The crisp operations intersection, union and implication, are extended to fuzzy sets and performed by t-norm, t-conorm and implication functions respectively. The fuzzy set operations of LiFR follow the operators of Zadeh fuzzy logic.
LiFR Semantics
LiFR's syntax follows a variant of the KRSS ontological notation. The choice of the implementation syntax is two-fold:
- It provides comprehensive expressivity enabling extension of the representation to fuzzy operators
- It is significantly more lightweight compared to other specifications (e.g. RDF/XML), thus enhancing the capability of fully supporting reasoning services in resource-constrained devices
LiFR Syntax
Where C, D are concepts (classes), R, S are roles (object properties), a, b are individuals and d, w ∈ [0,1] denote the membership degree of a concept assertion and the modifier weight of a concept respectively. In case of crisp assertions a degree of d ≥ 1.0 is imposed and respectively if no weight modifier is defined, a w of 1.0 is assumed.
Note that:
- A role can be declared with all its properties, e.g. (ROLE R :PARENT P :INVERSE S :TRANSITIVE)
- Following DLP semantics, universal and existential restrictions are unilateral, i.e. only ∃R.C ⊑ D and C ⊑ ∀R.D are supported.
LiFR services in LinkedTV
LiFR has been ongoing work of CERTH-ITI through several past projects and for the purposes of LinkedTV it has been extended as a personalised and contextualised recommendation service to enable mainly:
- Semantic matching of user profiles to multimedia content.
- Concept filtering via interest propagation over a dedicated personalisation-centric ontology (LUMO).
Several other services have been employed within LinkedTV based on LiFR's basic inferencing services, like mappings retrieval within the LUMO mappings ontology and topic detection in semantic user and content profiles based on the LUMO ontology.
Regarding the main filtering service, by appending information about a user’s preferences, formulated with formal semantics, based on a given domain ontology, LiFR can decide whether a given content item matches the user profile and to what degree, based on the fuzzy annotation metadata that accompany the content item and modified by the weight indicating the user’s level of preference to a concept.
Implementation of these services include:
- Adaptation to the LinkedTV knowledge space and extension to include instances in the user profile (instances were limited to semantic content descriptions).
- Refutation of content or concepts deemed as uninteresting to the given user, based on his profile-incorporated disinterests.
To support filtering services, LiFR needs as input a reference domain ontology (within LinkedTV a dedicated ontology was developed to cover the networked media domain, namely LUMO), a semantic user profile and a set of semantic descriptions of content items to be considered for recommendation (the latter only for content filtering). Examples of user profiles and content profiles in the KRSS variant syntax can be found in the supportive tool for semantic user profile construction developed within LinkedTV, Linked Profiler.
Future extensions
Additional extensions planned within LinkedTV include the extension of the reasoner's expressivity to cover the entirety of the OWL 2 RL profile and fuzzy role assertions. On the semantic filtering level for LinkedTV, several extensions are considered, like extending concept filtering with an option of a degree decay factor along each propagation step of the interests along the reference knowledge base and/or adding conditionals support in the inferencing logic.
LiFR in LinkedTV Demonstrator
A video demonstrator of the concept and content filtering services in the context of LinkedTV can be found here.
An online demo page, illustrating real-time content and concept filtering in the scope of LinkedTV, as well as topic detection within media content, using the LiFR reasoner, can be found here.
Content and concept filtering REST API
LinkedTV content and concept filtering services via semantic reasoner are supported by a REST API, currently hosted on a CERTH-ITI server (base URI: http://multimedia.iti.gr/api/).
Content filtering
Invokes and returns the results of the process of filtering several content items based on a given user profile, i.e. a list of content items, ranked according to the estimated preference of the given user.
GET /api/content_filtering?uid={uid}
- Description: GET /api/content_filtering?uid={uid}
- HTTP method: GET
- Content-Type: application/json
- URI: http://multimedia.iti.gr/api/content_filtering?uid={uid}
- Example of response:
{
"[{"Degree":"0.6723999999999999","URL":"www.example.org","cid":"silbermond_seed_content_chapter"}]",
"[{"Degree":"0.6723999999999999","URL":"www.example.org","cid":"stilbruch_20120322_silber_m"}]",
"[{"Degree":"0.6723999999999999","URL":"www.example.org","cid":"silbermondclubconzert"}]",
"[{"Degree":"0.6051599999999999","URL":"www.example.org","cid":"radioberlin_silbermond"}]",
"[{"Degree":"0.6051599999999999","URL":"www.example.org","cid":"www_silbermond_de"}]",
"[{"Degree":"0.6051599999999999","URL":"www.example.org","cid":"radioberlin_silbermond_eine"}]"
}
Concept filtering
Invokes and returns the results of the process of retrieving all concepts of interest to a user based on a given profile, i.e. an unranked (at the moment, future implementation will see to ranking it) list of concepts from a dedicated concept space onto which the given user's interests are propagated.
GET /api/concept_filtering?uid={uid}
- Description: GET /api/concept_filtering?uid={uid}
- HTTP method: GET
- Content-Type: application/json
- URI: http://multimedia.iti.gr/api/concept_filtering?uid={uid}
- Example of response:
{
[{Degree":1.00,"Concept":"location"}],
[{Degree":0.82,"Concept":"agent"}],
[{Degree":1.00,"Concept":"intangible"}],
[{Degree":0.82,"Concept":"music_organization"}],
[{Degree":0.76,"Concept":"AND sports_club user_location"}],
[{Degree":1.00,"Concept":"person"}],
[{Degree":1.00,"Concept":"sports_club"}],
[{Degree":0.68,"Concept":"lifestyle_leisure"}],
[{Degree":0.68,"Concept":"leisure"}],
[{Degree":1.00,"Concept":"user_dimensions"}],
[{Degree":1.00,"Concept":"sports_event"}],
[{Degree":0.68,"Concept":"recreation"}],
[{Degree":1.00,"Concept":"context_dimensions"}],
[{Degree":0.51,"Concept":"AND olympics athlete"}],
[{Degree":1.00,"Concept":"spatio-temporal"}],
[{Degree":1.00,"Concept":"athlete"}],
[{Degree":0.68,"Concept":"crafting"}],
[{Degree":1.00,"Concept":"sports_agent"}],
[{Degree":0.82,"Concept":"band"}],
[{Degree":1.00,"Concept":"olympics"}],
[{Degree":0.68,"Concept":"hobby"}],
[{Degree":1.00,"Concept":"event"}],
[{Degree":0.68,"Concept":"topics"}],
[{Degree":1.00,"Concept":"sports_organization"}],
[{Degree":1.00,"Concept":"domain_dependent_dimensions"}],
[{Degree":0.54,"Concept":"weather"}],
[{Degree":1.00,"Concept":"user_location"}],
[{Degree":0.82,"Concept":"organization"}],
}
Downloads
To be released soon.
Contacts
For LiFR related issues, please contact dorothea [at] iti [dot] gr.
For LinkedTV related issues, please contact bmezaris [at] iti [dot] gr.