Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
61 views

Semantic web resources for a new web site?

I want to implement a web site from scratch using semantic web as much as possible. My website will be for a Scientific Institution, I have no model but I recognize there are entities/objects like ...
4
votes
2answers
312 views

Classes / instances in Ontology

I'm trying to comprehend ontology basics. Here's an example: car (class) 2009 VW CC (sub-class or instance?) My neighbor's 2009 VW CC (instance) My issue is understanding what is "2009 VW CC" (as ...
3
votes
3answers
142 views

Anyone could tell me please what kind of RDF ontologies related to tourism exists at the moment?

I'm setting up a tourism website and wish to use semantic web in it. I'm also interested in using RDF ontologies. So, I was wondering if anyone could tell me, if exists anything for this, that says ...
2
votes
2answers
52 views

Working with logical functors in Prolog

I want to have logical connectives such as not(X), conj(X, Y), some(Y, K). and I want to be able to iterate over them. So for example I want to be able to convert not(some(Y, K)), into all(Y, ...
2
votes
1answer
61 views

OWL Individual in java

I'm trying to access ontologies via Eclipse. I use the owl-api. I create my ontologies in Protegé, however I want to create and classify new INDIVIDUALS by code. How is that possible? I googled ...
2
votes
1answer
189 views

how we can create a query based on SPARQL to see the value of some data type property?

I create this query: PREFIX VB: <http://VBnet#> SELECT ?x ?y WHERE { ?x VB:HasName ?y } HasName is one datatype property. When I run this query in Protege, system show me just the ...
2
votes
1answer
229 views

Ontology - Conflict of same individuals property and datatype property

I am having a problem with "same individuals property" in protege, when i run a reasoner (pellet 1.5 or fact++) Lets take ontology example thing has class sons A and B, A has sons C and D. B, C ...
1
vote
0answers
60 views

Build a SKOS Reasoner rule-based

I have to build a reasoner for ontologies SKOS to reason with rules made ​​in CLIPS / Jess. I want to have simple forms of automated reasoning. I could not find anything specifically to help me create ...
1
vote
2answers
126 views

emotional ontology

I want to make application who detect emotions from a text. To do this i need a ontology. my question for you is, if you know a existent ontology who can help me. Thanks.
1
vote
1answer
78 views

Can a semantic web Ontology have the same expressivity but a different profile?

I'm analyzing some ontologies with the pellet reasoner, but I'm getting some strange results. When I perform the "pellet info" method on an ontology, and compare the OWL Profile to the DL ...
1
vote
1answer
420 views

In Semantic Web, are OWL EL, RL, QL all instances of DL? What is the difference? More inside

I'm using the pellet reasoner on a number of ontologies and have run the info method on a list of IRIs (in this case URLs). The two metrics that interest me are the DL Expressivity and OWL Profile. ...
1
vote
1answer
302 views

Synchronizing Jena OntModels with bnodes

This question relates to rcreswick's question on Serializing Jena OntModel Changes. I have Jena models on two (or more) machines that need to remain synchronized over sockets. The main issue that I ...
1
vote
4answers
971 views

Serializing JENA OntModel Changes

I need to keep a couple of [Jena] Models (OntModels, specifically) synchronized across a socket, and I'd like to do this one change at a time (for various reasons -- one being that each Statement ...
0
votes
1answer
370 views

Modify the predefined ontology by using jena

I created my ontology by Protege. my ontology has some classes and instances. Now i'm going to add other classes and instances by jena that's why i write the below code to create a new class and one ...
0
votes
2answers
282 views

how can i add some trrriple to my ontology by jena?

I have instance1 of class1 and instance2 of class2. Also i have defined HasName(object property)in my ontology .Now, how can i add the tiple (instance1 HasName instance2) to my ontology by ...
0
votes
1answer
2k views

How to Query Individuals using OWL DL Query in Protege 4?

How do I qery individulas in my ontology, here is a description of what I would like to do (similar to SQL queries): I have three classes (components, features, and polarity). The polarity value can ...