The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

Basic RDFS inferencing with the Jena API

I'm currently following the Jena API inferencing tutorial: https://jena.apache.org/documentation/inference/ and as an exercise to test my understanding, I'd like to rewrite the first example, which ...
0
votes
0answers
66 views

How can you select an appropriate Inference Engine?

I'm trying to figure out which inference engine can give me the best prediction , In general there are a lot of considerations: speed, convergence, support for the factors that make up our model, ...
1
vote
1answer
48 views

Using Excluded By in OWL

Dear Semantic Web folks, I'm questioning myself how I could define an "Excluded by" construction in OWL. For now the only solution I can think of is using disjointWith. What I mean with "Excluded ...
3
votes
3answers
97 views

Why does my OWL inferencer not give me the results I expected?

Hi Semantic Web folks, I dont expect to have <rdf:type rdf:resource='#Tsunami'> in the NamedIndividual: instance_Dromen after inferencing the below OWL code. Somehow there is something wrong ...
2
votes
0answers
256 views

System diagnosis in expert system “Inference engine”

I have graduation project and I am working in an expert system"System diagnosis for diseases"(I did not begin implementation stage yet ) in expert system I did not see any useful tutorial(code) that ...
7
votes
1answer
273 views

How can I embed a Prolog-like inference engine into a .NET application?

Certain kinds of domain logic are represented more naturally using Prolog predicates than C# objects. One example of such a domain is representing family relationships. Is there a way to embed a ...
5
votes
6answers
617 views

Inference engine to calculate matching set according to internal rules

I have a set of objects with attributes and a bunch of rules that, when applied to the set of objects, provides a subset of those objects. To make this easier to understand I'll provide a concrete ...