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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 15811 - 15840 of 42023   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15811
... Argh. You are right. That's a bug. You could patch it by uncommenting the first "sameAs1" rule in your copy of owl-fb.rules. [The problem is that the...
Dave Reynolds
derihy
Offline Send Email
May 1, 2005
11:39 am
15812
... One approach would be to use typed literals. Create an RDFDatatype (possibly just a dummy one) to represent your objects and then your objects can be...
Dave Reynolds
derihy
Offline Send Email
May 1, 2005
11:48 am
15813
... You could fairly easily write Java code to do this but there is no built in path-length method in the Jena API. Dave...
Dave Reynolds
derihy
Offline Send Email
May 1, 2005
11:51 am
15814
... It can certainly be used with Java web start. See RDF Gravity http://semweb.salzburgresearch.at/apps/rdf-gravity/index.html for example. ... I assume...
Dave Reynolds
derihy
Offline Send Email
May 1, 2005
11:57 am
15815
... That's because deletes are not incremental in the rule system at the moment. When you add new facts the rules run incrementally and add any additional...
Dave Reynolds
derihy
Offline Send Email
May 1, 2005
2:43 pm
15816
On Sun, 01 May 2005 12:39:41 +0100, Dave Reynolds <der@...> ... I use beta2 owl-fb.rules with first "sameAs1" rule: [sameAs1: (?A owl:sameAs ?B) ->...
baran_H
hajacara
Offline Send Email
May 1, 2005
6:46 pm
15817
Thanks for the insight!! So the only I can achieve this is by creating a temp model with all the stmts from Deduction Model, delete the stmt from the model...
pavan1809
Offline Send Email
May 2, 2005
3:47 am
15818
I had a another issue , If two diff stmts are resutling in the same stmt being inferred then this method does not work ..as in if X A Y --> X Q W X B Z --> X Q...
pavan1809
Offline Send Email
May 2, 2005
3:53 am
15819
On Sun, 01 May 2005 12:39:41 +0100, Dave Reynolds <der@...> ... yes, after "uncommenting" the first sameAs1-rule of owl-fb.rules i get the expected...
baran_H
hajacara
Offline Send Email
May 2, 2005
4:56 am
15820
Hello everybody I have the following question: In the attached ontology that shows teaching and working relations at our university, there are shown the two...
Christoph Kiefer
mitsukiefi
Offline Send Email
May 2, 2005
8:47 am
15821
Hi, Well rdf gravity is an application not an applet.And I dont think it is a good idea to use applets with java webstart. So coming back to the point, here is...
Candy
ccanddyy
Offline Send Email
May 2, 2005
11:36 am
15822
Hello Group, I am using Pellet reasoner on an OWL model. To further process them, I need to retrieve the additional statements that were created by pellet ...
Bernhard Schandl
bernhard_sch...
Offline Send Email
May 2, 2005
12:51 pm
15823
... Is it enough to have a transaction OR lock? If multiple threads (in a servlet environment) access the same ModelRDB, is it adequate to use only...
samppa_saarela
Offline Send Email
May 2, 2005
1:17 pm
15824
... I'm afraid so unless I fix the incremental-delete problems. ... You can reduce the copying slightly: Model diff = ModelFactory.createDefaultModel(); ...
Dave Reynolds
derihy
Offline Send Email
May 2, 2005
2:28 pm
15825
... Sorry, you can't do that either. RDF Models are sets so only one copy of each derived triple is stored. The rule systems just keep the first triple, with...
Dave Reynolds
derihy
Offline Send Email
May 2, 2005
2:40 pm
15826
... Multiple threads using one connection need a lock (serialization between themselves) and a transaction (to serialize access on other connections). If you...
Seaborne, Andy
andyseaborne
Offline Send Email
May 2, 2005
2:44 pm
15827
... Your ontology doesn't tell us what relationship you have defined to model the notion of being an assistant so the following is approximate: Model m = //...
Dave Reynolds
derihy
Offline Send Email
May 2, 2005
2:48 pm
15828
... You should ask the Pellet developers but my assumption is that there isn't an easy way. Notions such as deductionsModel and derivations are fairly specific...
Dave Reynolds
derihy
Offline Send Email
May 2, 2005
2:53 pm
15829
Hi Bernhard, Pellet does not provide the derivation for a statement. Finding the derivation (or in other words explaining) a statement is very hard considering...
Evren Sirin
evren@...
Send Email
May 2, 2005
3:00 pm
15830
Hi Evren, thanks for your reply. Maybe I did not explain correctly my intention. What I need is a reasoner which returns new statements that are derived *from*...
Bernhard Schandl
bernhard_sch...
Offline Send Email
May 2, 2005
3:43 pm
15831
... True, I was just pointing to it as an example of loading Jena code from within a browser. Personally I find web start more useful than true applets. ... ...
Dave Reynolds
derihy
Offline Send Email
May 2, 2005
4:10 pm
15832
... The built in rule reasoners (RDFS, OWL*) allow you to do this in the sense that when you add the new statement you can see new consequences being added to...
Dave Reynolds
derihy
Offline Send Email
May 2, 2005
4:12 pm
15833
... Joseki-CVS works fine. But there is a problem with its query.html file. The predefined queries are obsolete. The ones available at...
ROSSEL, Olivier (CIMPA)
olivier.rossel@...
Send Email
May 2, 2005
4:15 pm
15834
... Oh, so you want to see the inferred triples not how they are derived. When PelletReasoner is used, getDeductionsModel() should return a small subset of...
Evren Sirin
evren@...
Send Email
May 2, 2005
5:46 pm
15835
... Probably. I try to keep the online demo working whenever I change ARQ with any application-visible change or feature. ... Oh dear. Fixed. ... Andy...
Seaborne, Andy
andyseaborne
Offline Send Email
May 2, 2005
6:35 pm
15836
... between ... connections). If ... don't ... because ... and not ... incondistent) ... Thanks for clarifying this - needed to make this 100% sure. ... more ...
samppa_saarela
Offline Send Email
May 2, 2005
7:44 pm
15837
... That may not have semantics suitable for all application usages, for example, there is no isolation between sub-transactions within outer transaction, and...
Seaborne, Andy
andyseaborne
Offline Send Email
May 2, 2005
8:58 pm
15838 Andy.seaborne
andyseaborne
Offline Send Email
May 3, 2005
12:34 am
15839
Give more photo of my....
Ian.Dickinson@...
ian_j_dickinson
Offline Send Email
May 3, 2005
4:03 am
15840
... Correct on both counts. ... Even better is to inherit from ModelTestBase and use AssertIsoModels, because that will give you an easier-to-read listing of...
Chris Dollin
anover_alias
Offline Send Email
May 3, 2005
8:16 am
Messages 15811 - 15840 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