Ontology is a formal representation of knowledge as a set of concepts within a domain,and the relationships between those concepts
0
votes
3answers
22 views
Jena: How to check if an instance belongs to a certain class?
Well, sorry for such a naive question, but I've found no relevant information up to now...I generated pottery.java from pottery.rdf with Jena schemagen. The properties and classes in my ontology were ...
0
votes
0answers
9 views
Owl Protege model repository
I can't really grasp the concept of how I can add an ontology model in a repository for storing. For example, I've created an ontology model in Protege 4.3. What's the next step? Suppose I want to ...
0
votes
1answer
27 views
Querying subclasses through Fuseki
I use the following simple SPARQL query to obtain a list of classes of an ontology and their subclasses through Fuseki:
SELECT DISTINCT ?subject ?object
WHERE { ?subject rdfs:subClassOf ?object }
...
0
votes
1answer
21 views
Jena: property name cannot be resolved to a variable?
I'm using Jena to query my ontology, and I'm following Step 8: Querying a Model of this tutorial. The RDF file vc-db-1.rdf being queried here is generated from Step 3: Writing RDF and is shown below:
...
1
vote
0answers
7 views
How to convert a concept (class) into an instance in an ontology?
I am working on creating a large ontology and want to convert a concept (class) into an instance. Is this possible automatically? For example I have the class "x" and it has been defined as a subclass ...
0
votes
1answer
27 views
How to use an existing ontology in a Java application?
I've created an ontology with several instances. What I'm going to do with it is :
Using Eclipse, create a searching program. User can input a string, and if an instance has this string as one of its ...
0
votes
0answers
24 views
How to populate an existing ontology with rdf triplets from multiple xml files?
I have an ontology which has already been defined. and i have a folder with hundreds of xml files which have been extracted by crawling.How can i extract triplets from all these xml files and populate ...
0
votes
0answers
23 views
Owl api: creating a new ontology that imports others
I have just started using the OWL API in order to generate some examples that use other ontologies. The situation is like this: I have two ontologies A and B that have many elements and imports from ...
0
votes
1answer
12 views
Protege DataMaster: Table records cannot be shown or imported
There are some records in my tables stored in MySQL, and the Protege DataMaster plugin can be successfully connected to the database. Tables can be listed on the left. But when I click any one of ...
0
votes
1answer
31 views
how to rename an ontology's prefixes
I have created an onology using Jena API which contains the following classes and DataType Properties:
public class Onto {
OntClass USER,...;
OntModel model;
String uriBase;
...
0
votes
0answers
19 views
Best algorithm for rough set based attribute reduction? [closed]
Which is the best algorithm for rough set based attribute reduction?
I tried lot. But couldn't find. Help me.
0
votes
1answer
36 views
Extract information from XML to RDF triples using ontology
I have an existing ontology and some XML files. I want to extract the data from the existing XML files and store them in (a new RDF file) RDF triples using Jena. How can I make the mapping between XML ...
2
votes
2answers
54 views
Representing if-then sentence using OWL?
I am working with basic OWL, and it's quite easy to represent some simple sentence like "Songoku is a lecturer, he teaches Maths".
Eg:
<owl:Class rdf:ID="Lecturer"></owl:Class>
...
0
votes
1answer
23 views
Assigning labels to triples
I am currently trying to do stream reasoning using Jena, so I want to be able to reason over a certain set of triples that have occurred in a particular window of time, also taking into account some ...
1
vote
1answer
48 views
Querying anonymous classes in OWL API with Manchester Syntax
I'm using OWL API for reasoning over ontology created in Protege. I'm dealing with OWL API Example DL query: ...
0
votes
1answer
79 views
Is it possible to read allowed values for a datatype property of a class?
I'm using an ontology in which I created a class named "USER". This class contains a datatype property named "gender". Then I inserted two allowed values for this datatype which are "male" and ...
0
votes
1answer
27 views
How to create bilingual ontology in Protege?
I want to create a web application based on semantic web. The knowledge base is an ontology. My problem is that my application have to supports two languages (English and Romanian). In this moment the ...
0
votes
2answers
26 views
catch all the inferences generated by pellet reasoner
I have a problem when executing the reasoner in my application, I can't capture the inferences generated by the reasoner.
It's normally performed, the printClassTree shows me that inferences were ...
0
votes
2answers
49 views
Tagging and Categorizing text automatically using NLP and Ontology respectively
I am working on a project in which user adds some text into Database, and while saving also adds tags to his/her entry, so that others can search using those tags.
EXAMPLE:
TEXT: "Next Formula 1 ...
0
votes
1answer
71 views
Data property value extraction from an instance of an ontology
I am trying to display the data property values of the instances of my ontology.I am using Jena for this purpose.
My instances are as follows
<!-- ...
0
votes
1answer
19 views
Forcing inconsitency by following qualified cardinality restriction
My question goes beyond one question which already has been asked here
I defined a qualified cardinality restriction like this one:
Pizza and hasTopping exactly 4 CheeseTopping and hasTopping only ...
0
votes
0answers
42 views
Ontologies to determine data types?
currently I'm using a rule based system to check two user selected sql database columns then suggest a graphed output. It works fine but it's really inefficient when it comes to adding new datasets as ...
-2
votes
0answers
21 views
Ontology on Mobile? [closed]
I love the concept of Ontology.
As like some people likes specific computer language, I love this.
I think ontology is the basic of saving and processing knowledge base.
These days I think about ...
-6
votes
0answers
54 views
Can anyone provide the code in java for making the clusters using k_means algorithm? [closed]
I'm working on a project using ontology as a database. I have to make the clusters of sub-classes of any super class. Can anyone provide the code in java for making the clusters using k_means ...
0
votes
2answers
32 views
Annotate Web pages using given Ontology
i have to annotate some web pages using particular ontology of a particular domain and generate annotated web pages in RDF format.
so there is any open source tool available which will complete my ...
0
votes
0answers
98 views
Program to Display Data Values Of Instances of an Ontology using Jena
The following is my ontology .owl file which has a Smurf and a Mailbomb Instance( the instances are at the end of the file) . I wish to print the values of the data properties of the instances along ...
0
votes
1answer
69 views
Jena multiple rdfs:label
I'm new to Jena and Owl I was given an ontology. I can open it with Protege 4.2 without any problems but when I try to open it with Jena I get:
Exception in thread "main" ...
0
votes
1answer
42 views
How to programatically list the relationship between two instances in an ontology?
I have an ontology which i made up of relationship as follows
Company1
:hasSubsidary sub1
:hasDepartment Cars1
:hasSubdepartment Manufacturing
:isinBuilding area1
:hasUnit ...
1
vote
1answer
59 views
OWL type inference with a restriction
I am studying the notion of OWL restrictions with Protege 4 using FaCT++ and a trivial ontology. Suppose I have an individual foo of class Something:
:Something a owl:Class.
:foo a :Something, ...
0
votes
1answer
122 views
OWL ObjectProperty loading as annotation in Protégé
I'm trying to load an ontology in Protégé but it is not processed as expected. Most problematic is that all the Object and Data Properties appear as Annotation instead of Data Property and Object ...
0
votes
1answer
265 views
How to import .owl file into eclipse using Jena and create instances of it
Hi i have created an ontology using protege(.owl file).Now i wish to import this into a java program(using jena on eclipse) and create instances of it(What i mean is that my ontology represents ...
0
votes
2answers
40 views
List object resources from a instance in Jena
How can I list all Object Resources associated to a instance of Resource in Jena?
For example: Micheal has an Object Resource called "Ben" which is a instance of a Resource Person
0
votes
1answer
42 views
How to list the objects of rdf statements?
I would like to select a list of the resources related to a given subject resource, via any RDF predicate.
For example, if the resources in my model are ex:alice, ex:bob, ex:peter" andex:Ben, and my ...
0
votes
0answers
16 views
Semantic DataBase Integration
Does semantic database integration always involve generation of local ontologies from source databases(databases to be integrated), creating global ontology by ontology merging and querying the ...
0
votes
0answers
63 views
how to get all resources related to resource using jena API's..?
I have created a few methods in StoryModel. If there is any mistake in the code I really appreciate corrections.
public class StoryModel {
String dbName = "DB3";
String sns = ...
0
votes
0answers
33 views
Writing the sparql to get all carnivorous
I'm trying to get all the carnivorous from this ontology. The BBC page here enter link description here is build on this ontology. I'm no expert in sparql and rdf, can someone help me to write this ...
1
vote
0answers
51 views
Animal Ontology [closed]
I am looking for ontology like an animal ontology where I can get the hierarchy, e.g.
Bird
==>Duck
======>Mallard_Duck
I have seen this one, ...
0
votes
1answer
77 views
Applications of semantic web/ontology in informational retrieval?
What are the uses of Semantic Web in the information Retrieval. Semantic Web here i mean, the structured created like DBPedia, Freebase.
0
votes
1answer
83 views
How to make a connection with my ontology?
I created an ontology with Protégé. Then I created an Android interface which contains two edit texts and a button. The main function of my code is to make a connection between my application and the ...
3
votes
1answer
41 views
How do I state in OWL that a Property must have a set of ordered values?
How do I state in OWL that a Property must have a set of ordered values?
For example: a Programme must have an rdf:Seq of Series, and a Series must have an rdf:Seq of Episodes?
The ...
0
votes
1answer
56 views
Passing two lists and three strings to a java class from a servlet
I have created a java servlet and java class
im instantiating an object and passing two lists and three strings to that class , but when i call the class method from the created object , the method ...
1
vote
1answer
52 views
Keyword search over a collection of OWL ontologies
I have a collection of OWL ontologies. Each ontology is stored in a dataset of a triple store database (e.g OWLIM, Stardog, AllegroGraph ). Now I need to develop an application which supposes ...
0
votes
0answers
59 views
How to use OWLviz in Protege 3.4.4?
I am using Protege 3.4.4. on Windows 7. I have created an ontology, but I have a problem with OWLviz. I have already set the DOT path. For that I installed Graphviz version 2.22. The graph has been ...
1
vote
1answer
41 views
SPARQL simple query
I have made an ontology for Email. I want to make a query to test but believe me I forgot to how to write a simple one!! can anyone help me? considering these :
Email has ...
0
votes
1answer
24 views
How to insert image file as individual for ontology class
im using protege 4.1 , and i have a class of animal and other class for images , i need to insert image file such as .jpg , .gif, .png as an individual for "Images" class to assign it to one instance ...
0
votes
0answers
61 views
Sparql query label annotation for data properties
In my ontology there is an individual "Lion" belong to a class "Carnivorous" which is belong to "Animal" class ( Animal>>Carnivorous:Lion)
this individual or instance "Lion" has multiple data ...
0
votes
1answer
45 views
Is reasoning only the benefit from Ontology
I'm new to ontology, my requirement is to gather the Insurance domain concepts and relations between them and I'm using protege to capture domain concepts.Now I have OWL file of insurance domain.
...
0
votes
0answers
33 views
Searching for a tool that build Sparql query automatically by selecting a particular individual
I have built my ontology using protege 4.1 , and i query the ontology through jena api, i need a visual tool that can help me to build the correct sparql query that select an individual or data ...
0
votes
0answers
27 views
Add keyword to Ontology concepts
I created an ontology for music of my country , so :
I would add keywords to my concepts created .
I would know if there is an ontology for "words" because I have a trouble with how I can analyse ...
-2
votes
2answers
94 views
SemWeb - Convert C# object into RDF triples
All i want is to convert a C# class instance into rdf triples using semweb, in order to fill my ontology with data. My class consists of both primitive properties and other classes and i have ...