Skip to search.
jena-dev · Jena Users

Group Information

  • Members: 2056
  • Category: Software
  • Founded: Sep 19, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 15811 - 15840 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15811 Dave Reynolds
derihy Offline Send Email
May 1, 2005
11:39 am
... 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...
15812 Dave Reynolds
derihy Offline Send Email
May 1, 2005
11:48 am
... 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...
15813 Dave Reynolds
derihy Offline Send Email
May 1, 2005
11:51 am
... You could fairly easily write Java code to do this but there is no built in path-length method in the Jena API. Dave...
15814 Dave Reynolds
derihy Offline Send Email
May 1, 2005
11:57 am
... 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...
15815 Dave Reynolds
derihy Offline Send Email
May 1, 2005
2:43 pm
... 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...
15816 baran_H
hajacara Offline Send Email
May 1, 2005
6:46 pm
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) ->...
15817 pavan1809 Offline Send Email May 2, 2005
3:47 am
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...
15818 pavan1809 Offline Send Email May 2, 2005
3:53 am
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...
15819 baran_H
hajacara Offline Send Email
May 2, 2005
4:56 am
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...
15820 Christoph Kiefer
mitsukiefi Offline Send Email
May 2, 2005
8:47 am
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...
15821 Candy
ccanddyy Offline Send Email
May 2, 2005
11:36 am
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...
15822 Bernhard Schandl
bernhard_sch... Offline Send Email
May 2, 2005
12:51 pm
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 ...
15823 samppa_saarela Offline Send Email May 2, 2005
1:17 pm
... 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...
15824 Dave Reynolds
derihy Offline Send Email
May 2, 2005
2:28 pm
... I'm afraid so unless I fix the incremental-delete problems. ... You can reduce the copying slightly: Model diff = ModelFactory.createDefaultModel(); ...
15825 Dave Reynolds
derihy Offline Send Email
May 2, 2005
2:40 pm
... 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...
15826 Seaborne, Andy
andyseaborne Offline Send Email
May 2, 2005
2:44 pm
... Multiple threads using one connection need a lock (serialization between themselves) and a transaction (to serialize access on other connections). If you...
15827 Dave Reynolds
derihy Offline Send Email
May 2, 2005
2:48 pm
... 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 = //...
15828 Dave Reynolds
derihy Offline Send Email
May 2, 2005
2:53 pm
... 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...
15829 Evren Sirin
evren@... Send Email
May 2, 2005
3:00 pm
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...
15830 Bernhard Schandl
bernhard_sch... Offline Send Email
May 2, 2005
3:43 pm
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*...
15831 Dave Reynolds
derihy Offline Send Email
May 2, 2005
4:10 pm
... 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. ... ...
15832 Dave Reynolds
derihy Offline Send Email
May 2, 2005
4:12 pm
... 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...
15833 ROSSEL, Olivier (CIMPA)
olivier.rossel@... Send Email
May 2, 2005
4:15 pm
... Joseki-CVS works fine. But there is a problem with its query.html file. The predefined queries are obsolete. The ones available at...
15834 Evren Sirin
evren@... Send Email
May 2, 2005
5:46 pm
... 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...
15835 Seaborne, Andy
andyseaborne Offline Send Email
May 2, 2005
6:35 pm
... Probably. I try to keep the online demo working whenever I change ARQ with any application-visible change or feature. ... Oh dear. Fixed. ... Andy...
15836 samppa_saarela Offline Send Email May 2, 2005
7:44 pm
... between ... connections). If ... don't ... because ... and not ... incondistent) ... Thanks for clarifying this - needed to make this 100% sure. ... more ...
15837 Seaborne, Andy
andyseaborne Offline Send Email
May 2, 2005
8:58 pm
... That may not have semantics suitable for all application usages, for example, there is no isolation between sub-transactions within outer transaction, and...
15838 Andy.seaborne
andyseaborne Offline Send Email
May 3, 2005
12:34 am
15839 Ian.Dickinson@...
ian_j_dickinson Offline Send Email
May 3, 2005
4:03 am
Give more photo of my....
15840 Chris Dollin
anover_alias Offline Send Email
May 3, 2005
8:16 am
... 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...
Messages 15811 - 15840 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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