Search the web
Sign In
New User? Sign Up
jena-dev · Jena Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 14486 - 14515 of 42023   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14486
... [Posted to -dev and -devel; suggest followups to -devel only.] *All* the constraints are passed down to the RDB layer (because they're passed down to all...
Chris Dollin
anover_alias
Offline Send Email
Mar 1, 2005
8:37 am
14487
I am trying to use the GenericRuleReasoner of Jena to do the reasoning to remove one statement from the model. But I dont quite understand the rule built-in...
Wang Shufan
wsf_jonah
Offline Send Email
Mar 1, 2005
8:52 am
14488
... (snipped; I saved it locally; listing it as N3 is often more revealing.) ... There aren't *any* individuals. The javadoc for listIndividuals says: Answer...
Chris Dollin
anover_alias
Offline Send Email
Mar 1, 2005
9:22 am
14489
I have the following code in my package and every time I access the model stored on the database, there will be a new ontology added to the model. ModelMaker...
niuniudesu
Offline Send Email
Mar 1, 2005
1:14 pm
14490
Hi people, I run Racer in Protégé to check the consistency of my ontology and I got the following: WARNING CAUSE: {FailureOilSpillConditionsUndetermined ...
Tatiana
tascvieira
Offline Send Email
Mar 1, 2005
2:28 pm
14491
... Why bother to catch and print the exception, and then kill the program? Let the exception propagate to the top level; typically the JVM will print a...
Chris Dollin
anover_alias
Offline Send Email
Mar 1, 2005
2:39 pm
14492
Ian, a bit off topic in this thread, but: I have a simple model and I'm trying to ask a query using the approach mentioned in your email, but unfortunatelly ...
Pavel Kolesnikov
pavel.kolesnikov@...
Send Email
Mar 1, 2005
5:41 pm
14493
Hi Pavel, ... How are you setting up the model? You need to be using the normal or mini rule reasoner for this to work. It should work, because I've done it...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Mar 1, 2005
6:08 pm
14494
hello, It´s me again. I'm new with inference and I need help please!!!! I have a transitive property "tiene" Materia TIENE Clase Clase TIENE Horario I want to...
Soledad Calo
solcalo
Offline Send Email
Mar 1, 2005
8:52 pm
14495
I am importing the food ontology also, but I have modified the imports in the food to import the local wine ontology that I have on my machine. So basically I...
abc def
kunalalp
Offline Send Email
Mar 1, 2005
10:44 pm
14496
Hi Soledad, ... There's no link between the classes in terms of the OWL semantics. There is a link between individuals that use the transitive property. In ...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Mar 1, 2005
11:52 pm
14497
... If you didn't change the xml:base of the files, you may have different documents as far as RDF is concerned. Hence you could easily have non-equal subjects...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Mar 1, 2005
11:55 pm
14498
... I think you should ask this question of the Protege team on the Protege support list. It doesn't seem to be a Jena issue. Ian...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Mar 1, 2005
11:56 pm
14499
I did change both the xml:base and the default namespace. Kunal Patel Ian Dickinson <Ian.Dickinson@...> wrote: ... If you didn't change the xml:base of the...
abc def
kunalalp
Offline Send Email
Mar 2, 2005
1:02 am
14500
Hello, I found an strange behavior of OWLReasoner. I made two RDF triples like this: B rdfs:subClassOf A P rdfs:domain B And I tried to infer by using...
tueda1121
Offline Send Email
Mar 2, 2005
4:41 am
14501
... If you want to simply remove a specific statement from the model it is easiest to do that using the RDF API. The rule builtin is there to allow forward...
Dave Reynolds
derihy
Offline Send Email
Mar 2, 2005
5:04 am
14502
As I said before. If you just change the namespace of the source file and read in the model the number of triples will not change. If you are importing other...
Dave Reynolds
derihy
Offline Send Email
Mar 2, 2005
5:10 am
14503
... Correct in OWL. ... No it doesn't. See http://esw.w3.org/mt/esw/archives/000036.html for more explanation. If you want to find out what properties "apply"...
Dave Reynolds
derihy
Offline Send Email
Mar 2, 2005
5:26 am
14504
... I guess this is the point - I was trying just simple jena.rdfquery --data simple.owl --query simple.rdql Is it possible to run a query using an appropriate...
Pavel Kolesnikov
pavel.kolesnikov@...
Send Email
Mar 2, 2005
6:52 am
14505
... I tried this but could not list individuals, and ... then tried addSubmodel too. but the result was same. Here is the code: OntModel ontModel =...
Önder Gürcan
ondergurcan
Offline Send Email
Mar 2, 2005
7:57 am
14506
Dave, Thank you for your quick response. I understood your explanation, I found my understand was wrong. I realized that the slot of class(in the object...
tueda1121
Offline Send Email
Mar 2, 2005
8:13 am
14507
On Wed, 2 Mar 2005 07:51:59 +0100, Pavel Kolesnikov ... ... and now I've tried following: Query query = new Query (queryString) ; Reasoner reasoner =...
Pavel Kolesnikov
pavel.kolesnikov@...
Send Email
Mar 2, 2005
10:36 am
14508
On Mon, 28 Feb 2005 08:50:28 +0000, ... <owl:Class rdf:ID="X" /> <owl:Class rdf:ID="Y"> <rdfs:subClassOf rdf:resource="#X" /> </owl:Class> <owl:Class...
baran_H
hajacara
Offline Send Email
Mar 2, 2005
12:53 pm
14509
... Great! Glad you got it to work. The rdfquery command line tool isn't very general it's applicability - the number of different ways to set up an inference...
Seaborne, Andy
andyseaborne
Offline Send Email
Mar 2, 2005
1:10 pm
14510
I am wondering how to improve jena's database access speed by using query cache and key cache. I use MySQL as the database backend and Jena 2. My observation...
kriscchen
Offline Send Email
Mar 2, 2005
3:52 pm
14511
I am reading Jena 2 the database inferface options for initialization and access. I am wondering how to set the LongObjectLength and IndexKeyLength. Can these...
kriscchen
Offline Send Email
Mar 2, 2005
3:58 pm
14512
... One example would be to define a property on the basis of a restriction. This is used in the formulation of complementOf and unionOf within OWL/lite. For...
Dave Reynolds
derihy
Offline Send Email
Mar 2, 2005
4:20 pm
14513
... This repsesentation doesn't work very well because you don't know which endtime coresponds to which start time. An alternative is to define time intervals...
Dave Reynolds
derihy
Offline Send Email
Mar 2, 2005
4:33 pm
14514
... No idea how to answer your question - Kevin will probably do that - but how big are your database models, and what sort of shape are they? [And do you need...
Chris Dollin
anover_alias
Offline Send Email
Mar 2, 2005
4:56 pm
14515
... Do you actually have a problem with the database performance, or are you just curious? (Databases *are* slow, compared to in-memory models; discs are slow....
Chris Dollin
anover_alias
Offline Send Email
Mar 2, 2005
4:58 pm
Messages 14486 - 14515 of 42023   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help