owl

Can GraphDB load 10 million statements with OWL reasoning?

给你一囗甜甜゛ 提交于 2019-12-01 23:44:32
I am struggling to load most of the Drug Ontology OWL files and most of the ChEBI OWL files into GraphDB free v8.3 repository with Optimized OWL Horst reasoning on. is this possible? Should I do something other than "be patient?" Details: I'm using the loadrdf offline bulk loader to populate an AWS r4.16xlarge instance with 488.0 GiB and 64 vCPUs Over the weekend, I played around with different pool buffer sizes and found that most of these files individually load fastest with a pool buffer of 2,000 or 20,000 statements instead of the suggested 200,000. I also added -Xmx470g to the loadrdf

Strange query behaviour in OWL!

时光毁灭记忆、已成空白 提交于 2019-12-01 21:41:16
In OWL this query works fine "person and hasChild min 3" it works fine and it gives me all persons who have more than 3 children but this one does not work "person and hasChild max 3" it should give me all persons who have less than 3 children however it does not work does any one have an idea about this?? why "min" works while "max" does not give any results!?? Thanks The reason why the 2nd query "does not work" is Open World Assumption , and possibly also (the lack of) Unique Name Assumption . Say you state: John lives in Paris. Mary lives in Paris. The following questions are answered in

How to add RDF triples to an OWLOntology?

◇◆丶佛笑我妖孽 提交于 2019-12-01 21:34:06
问题 I have some data coming in from a RabbitMQ. The data is formatted as triples, so a message from the queue could look something like this: :Tom foaf:knows :Anna where : is the standard namespace of the ontology into which I want to import the data, but other prefixes from imports are also possible. The triples consist of subject, property/predicate and object and I know in each message which is which. On the receiving side, I have a Java program with an OWLOntology object that represents the

How to add RDF triples to an OWLOntology?

与世无争的帅哥 提交于 2019-12-01 18:23:26
I have some data coming in from a RabbitMQ. The data is formatted as triples, so a message from the queue could look something like this: :Tom foaf:knows :Anna where : is the standard namespace of the ontology into which I want to import the data, but other prefixes from imports are also possible. The triples consist of subject, property/predicate and object and I know in each message which is which. On the receiving side, I have a Java program with an OWLOntology object that represents the ontology where the newly arriving triples should be stored temporarily for reasoning and other stuff. I

QCRs vs functional property

ぐ巨炮叔叔 提交于 2019-12-01 14:39:38
I have question based on the topic: SOF - Einstein puzzle in OWL In the owl, all cardinality restrictions are based on functional and inverse functional properties of Object Properties. I have remodeled it using QCRs. Old model (example): man drinks some beverage; drinks -> functional, inferse functional New model /EDITED/ : man drinks exactly 1 beverage; beverage drinkedBy exactly 1 man; drinks -> domain:man, range:beverage drinkedBy -> domain:beverage, range:man drinks inverseOf drinkedBy I replaced all "some" with "exactly 1". I think the first type is equivalent to the second model, but

PROTEGE: Using length path

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-01 13:32:00
is it possible to use Arbitrary Length Path Matching in protege SPARQL query tab? You are using the Snap SPARQL Query Plugin , not the SPARQL Query plugin . Unlike the SPARQL Query plugin, the Snap SPARQL Query plugin supports querying over inferred knowledge, but does not support property paths. From Snap-SPARQL: A Java Framework for working with SPARQL and OWL (section 4): SPARQL 1.1 contains property path expressions that allow regular-expression-like paths of properties to be matched. However, these are not supported by the Snap-SPARQL framework. While this would be a significant

local version of Linked Movie Database at linkedmdb.org

耗尽温柔 提交于 2019-12-01 13:28:44
i want to query from Linked Movie Database at linkedmdb.org locally. is there some rdf or owl version of it that can i download query locally instead of remotely I tried to query it and got the following error: org.openjena.riot.RiotException: <E:\Applications\linkedmdb-latest-dump\linkedmdb-latest-dump.nt> Code: 11/LOWERCASE_PREFERRED in SCHEME: lowercase is preferred in this component org.openjena.riot.system.IRIResolver.exceptions(IRIResolver.java:256) org.openjena.riot.system.IRIResolver.access$100(IRIResolver.java:24) org.openjena.riot.system.IRIResolver$IRIResolverNormal.resolveToString

converting RDF to OWL

怎甘沉沦 提交于 2019-12-01 12:20:12
问题 I want to generate RDF code that follows the OWL format. I am able to generate an RDF file, but I need to convert it into OWL. Below is the RDF that I can generate. <?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:ns1="http://example.com/nodetypes/2012/04/24/vehicle/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" > <rdf:Description rdf:about="http://example.com/nodetypes/2012/04/24/vehicle/2"> <ns1:nodetype_ptr_id>2</ns1:nodetype_ptr_id> <ns1:slug>vehicle</ns1:slug> <ns1:last

local version of Linked Movie Database at linkedmdb.org

删除回忆录丶 提交于 2019-12-01 11:24:37
问题 i want to query from Linked Movie Database at linkedmdb.org locally. is there some rdf or owl version of it that can i download query locally instead of remotely I tried to query it and got the following error: org.openjena.riot.RiotException: <E:\Applications\linkedmdb-latest-dump\linkedmdb-latest-dump.nt> Code: 11/LOWERCASE_PREFERRED in SCHEME: lowercase is preferred in this component org.openjena.riot.system.IRIResolver.exceptions(IRIResolver.java:256) org.openjena.riot.system.IRIResolver

PROTEGE: Using length path

南楼画角 提交于 2019-12-01 11:16:45
问题 is it possible to use Arbitrary Length Path Matching in protege SPARQL query tab? 回答1: You are using the Snap SPARQL Query Plugin, not the SPARQL Query plugin. Unlike the SPARQL Query plugin, the Snap SPARQL Query plugin supports querying over inferred knowledge, but does not support property paths. From Snap-SPARQL: A Java Framework for working with SPARQL and OWL (section 4): SPARQL 1.1 contains property path expressions that allow regular-expression-like paths of properties to be matched.