نتایج جستجو برای: owl dl

تعداد نتایج: 52104  

Journal: :Journal of Machine Learning Research 2009
Jens Lehmann

In this paper, we introduce DL-Learner, a framework for learning in description logics and OWL. OWL is the official W3C standard ontology language for the Semantic Web. Concepts in this language can be learned for constructing and maintaining OWL ontologies or for solving problems similar to those in Inductive Logic Programming. DL-Learner includes several learning algorithms, support for diffe...

2011
Wesley Saunders Shawn Bowers Margaret O'Brien

We present Protégé-OWL extensions designed to help scientists define domain-specific ontologies for describing observational data. The extensions provide high-level forms that users can fill out from within Protégé to specify classes used to describe scientific measurements. As a user fills out a form, underlying OWL-DL axioms are automatically asserted, thus allowing users to specify relativel...

2006
Christian Halaschek-Wiener Bijan Parsia

Recently there has been substantial development of OWL ontology engineering tools. Such tools typically come equipped with fully functional Description Logic (DL) reasoners, as both OWL-Lite and OWL-DL are formally aligned with Description Logics. One main limitation of editors is that the underlying reasoners cannot be continuously turned on while editing large, expressive ontologies, due to t...

2005
Zhengxiang Pan

We did a preliminary benchmark on DL reasoners using real world OWL ontologies. First hand experiences on OWL ontologies and reasoning services available to OWL are described and discussed.

2008
Simon Jupp Sean Bechhofer Robert Stevens

The Simple Knowledge Organisation System (SKOS) is a vocabulary intended for the representation of Knowledge Organisation Systems (KOS) such as thesauri, term lists and controlled vocabularies. The SKOS data model is defined using an RDF schema so that it fits in with existing Semantic Web technologies. We speculate how SKOS artefacts may be used in combination with other knowledge artefacts, s...

2012
Bernardo Cuenca Grau Ian Horrocks Markus Krötzsch Clemens Kupke Despoina Magka Boris Motik Zhe Wang

Answering conjunctive queries (CQs) over a set of facts extended with existential rules is a key problem in knowledge representation and databases. This problem can be solved using the chase (aka materialisation) algorithm; however, CQ answering is undecidable for general existential rules, so the chase is not guaranteed to terminate. Several acyclicity conditions provide sufficient conditions ...

2004
Boris Motik Ulrike Sattler Rudi Studer

Both OWL-DL and function-free Horn rules are decidable fragments of first-order logic with interesting, yet orthogonal expressive power. A combination of OWL-DL and rules is desirable for the Semantic Web; however, it might easily lead to the undecidability of interesting reasoning problems. Here, we present a decidable such combination where rules are required to be DL-safe: each variable in t...

2007
Dang Bui Bach Robert Meersman Peter Spyns Damien Trog

In this paper, we analyze the semantics of OWL-DL and ORM, and explain how to represent OWL-DL constructs in ORM without losing semantics. We demonstrate this in a formal manner as much as possible. We show it is possible to convert most constructs, except for what are called property restrictions, and discuss the implications.

2005
Boris Motik

for dissemination) This document provides details required to realize the framework for hybrid reasoning presented in D1.3. In particular, it presents the algorithm for reducing OWL-DL knowledge bases to disjunctive datalog programs. As explained in D1.3, this reduction provides the foundation for interoperability among a great number of formalisms, including, but not limiting to WSML, F-Logic,...

2014
Giorgos Stoilos

This system description paper introduces the OWL 2 query answering system Hydrowl. Hydrowl is based on novel hybrid techniques which in order to compute the query answers combine at run-time a reasoner ans1 supporting a (tractable) fragment of OWL 2 (e.g., OWL 2 QL and OWL 2 RL) with a fully-fledged OWL 2 DL reasoner ans2. The motivation is that if most of the (query answering) work is delegate...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->