The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
876 views

Rules Engine vs Expert System

What is the difference between a rules engine and an expert system? Example1: Let's say that I have a program that determines the expiration date of a new driver's license. It takes inputs like visa ...
7
votes
2answers
535 views

What are the myths about rules engine?

I'm writing a presentation about rule engine technology, specifically JBoss Drools. What are some of the 'myths' about rule engines. One I can think of is that it allows business users to control ...
6
votes
5answers
308 views

Expert System (?) algorithm

I have an algorithmic problem which can be reduced to this task: Suppose we have a list of n diseases and m symptoms. For each disease d and symptom s, we have one of three options: the symptom is ...
6
votes
5answers
4k views

Open source expert system

does anyone know about a open source expert system? actually, I'm rather interested in calling its inferential engine from C#.
5
votes
4answers
413 views

What is the best language in which to write an expert system?

Is LISP or something like Jess the best choice? I'm interested in writing a program that makes a suggestion based on users' answers. Computational considerations are not really a factor this is ...
4
votes
2answers
196 views

Inference engines vs Decision trees

I am using an expert system with an inference engine (forward chaining) and I would like to explain why it is better than a decision tree using very simple concepts. (in one particular situation) I ...
4
votes
2answers
657 views

Using Python Functions From the Clips Expert System

Using PyClips, I'm trying to build rules in Clips that dynamically retrieve data from the Python interpreter. To do this, I register an external function as outlined in the manual. The code below is ...
4
votes
1answer
130 views

Pruning Deductions in Expert Systems

In a rule system, or any reasoning system that deduces facts via forward-chaining inference rules, how would you prune "unnecessary" branches? I'm not sure what the formal terminology is, but I'm just ...
4
votes
3answers
390 views

what languages are used in AI research today?

I am currently dabbling in expert systems, emacs lisp, and reading up about artificial intelligence. Traditionally, artificial intelligence is associated with LISP and expert systems with CLIPS. ...
3
votes
4answers
419 views

What algorithm to use for Dynamic Scheduling System?

I'm planning to develop an expert system that automatically fits the school faculty's work load (time, teaching load, etc), and generate class sections, room that is at least 90% accurate with what ...
3
votes
2answers
537 views

Building an Inference Engine in Python

I am seeking direction and attempting to label this problem: I am attempting to build a simple inference engine (is there a better name?) in Python which will take a string and - 1 - create a list ...
3
votes
3answers
267 views

I am trying to build an Expert system and my UI is prepared in .Net and now I am willing to connect it to LISP

I am trying to write an Expert System from scratch. I am a beginner at this and need some help with my project. My UI is a .NET Windows application and now I want to connect to it to LISP to prepare ...
3
votes
4answers
229 views

Three value variables, max, min, actual

A long while ago I developed systems using Egeria an expert system language. It had a really useful feature where variables had three values, a min, max and current. In this way the probability of a ...
3
votes
5answers
447 views

What is a good book on Expert systems? [closed]

What is a good book you would recommend in order to implement an Expert System from scratch?
2
votes
1answer
65 views
+50

How to get a rule activation to call a python function, using PyClips

I am experimenting with PyClips and I want to integrate it tightly with Python, so that when a rule is activated, it calls a python function. Here is what I have so far: import clips def addf(a, ...
2
votes
1answer
263 views

Is this an expert system? [closed]

I am expected to write an expert system for a climate control module that takes into account user preferences and energy savings goals to achieve a setting. The environment variables are temperature, ...
2
votes
4answers
146 views

How to implement AIML in Prolog?

AIML files: http://www.alicebot.org/aiml/aaa/ I want to make these AIML files the knowledge base of my Prolog program. Help me. Thanks in advance. P.S. Excuse my bad english.
2
votes
2answers
101 views

Automated Legal Question and Answering System

I'm trying to implement a web application that will let users define rules and ask questions to see if statements are legal or illegal according to a set of rules. The domains I have in mind would be ...
2
votes
2answers
1k views

Decision trees and rule engines (Drools)

In the application that I'm working on right now, I need to periodically check eligibility of tens of thousands of objects for some kind of a service. The decision diagram itself is in the following ...
2
votes
1answer
2k views

Counting Sublist Elements in Prolog

How can I count nested list elements in prolog? I have the following predicates defined, which will count a nested list as one element: length([ ], 0). length([H|T],N) :- length(T,M), N is M+1. ...
2
votes
6answers
342 views

Is there any good out-of-the-box Expert System Engine?

I am looking into Expert Systems - just wondering if there are any good engines (commercial or open) available to facilitate development of a custom expert system (rather than building the whole thing ...
1
vote
1answer
50 views

CEP Engine vs Expert System

What are the main differencees between a Complex Event Processing engine and an Expert System engine? When should I use one or another?
1
vote
2answers
71 views

Good (and recent) resource for expert systems

Does anyone know any good (and recent) resources for designing expert systems?
1
vote
1answer
478 views

Drools: inserLogical and retract

This is a follow up on my previous question. I have a decision tree in the following form: and I want to transform it into rules in Drools Expert. The use of insertLogical has been proposed. Drools ...
1
vote
3answers
546 views

Developing a computer hardware troubleshooter expert system

I want to develop an expert system(or knowledge based system to be more general) that troubleshoots computer hardware problems. I have chosen Python as my language and Pyke as my inference engine. ...
1
vote
0answers
136 views

Counting Existing Facts in the RHS of Clips Rules

How do you test for fact existence in the RHS of rules in Clips? I'm trying to design a rule that will "score" the current state by counting how many goal facts exist. It's obvious how to test for ...
1
vote
3answers
131 views

Modeling complex hierarchies

To gain some experience, I am trying to make an expert system that can answer queries about the animal kingdom. However, I have run into a problem modeling the domain. I originally considered the ...
1
vote
1answer
417 views

What free expert system can You recommend (with higher functionality then CLIPS)?

I'm trying to find best free expert system, with the highest functionality. I know about CLIPS, but is there another system, for example being able to accept percent of confidence for each rule ...
1
vote
2answers
182 views

How to read line in CLIPS?

I need to read a string in CLIPS so i'm usign (readline) but it doesn't seem to work. It doesn't let me enter anything and it just returns "". Any ideea what's the issue? CLIPS> (readline) "" ...
1
vote
5answers
715 views

Neural Network Expert System

Does anyone know how to emulate an Expert Systems using Neural Networks? An example of this is the 20q.net website. I'm more curious to how the network would be designed; ie how many inputs, what the ...
1
vote
3answers
251 views

Variable substitution in pattern matching?

I'm developing an inference engine, this means that basically I have a certain number of "facts" which are basically the representation of the world in a certain moment. Together with the facts (that ...
1
vote
2answers
360 views

Expert System engine

Next year will be my graduate year to be an informatics engineering person and i am trying to find ideas about the jounior project. Actually i have an idea of making an expert system engine. I worked ...
1
vote
4answers
412 views

Expert system Basics

I need do write an expert systems that should aid user in picking up best mobile phone operator. It should be very simple and not based on languages/libaries such as CLISP or JESS. So I need to write ...
1
vote
1answer
528 views

Frame expert system

What's the best way to write a simple frame-based expert system, which determines if object is relative to some group? It's a kind of lab work for Intelligent Systems course in university. Or are ...
0
votes
0answers
26 views

creating a demonstrator for an expert system order 1 Unify method

In order to develop a demonstrator of an expert system using java I need to write a method of unification. In this method I need to test if the parameter is a variable or constant and to verify if ...
0
votes
0answers
55 views

How to create if-then rules of expert system based on the database? [closed]

I have one program that related to expert system. I have 3 tables, they are "knowledge", "problem", "solution". In the knowledge tables there are question, if_yes, and if_no columns. if_yes/if_no ...
0
votes
1answer
52 views

Best code organizations for such project type

I have a set of parameters and coefficients. It looks like this: param1 { Name:blabla; PossibleValues:[{'lalalla1',0.9},{'lalala2',0.8},{'lalal3',0.7},{'lallal4',1.0}]; // where ...
0
votes
1answer
84 views

Idea for developing an expert system using Drools expert

I want to develop tax advisory system using Drools expert. The idea of such system is able to select the Tax rules to calculate tax amount and suggest recommendation(s) to reduce tax payment. For ...
0
votes
2answers
116 views

Building web-based expert systems?

A client has asked us to build a web-based tool to help new users entering into their domain. The system would ask users questions to help build a profile on them and their interests. The profile ...
0
votes
0answers
36 views

Expert System for User [closed]

I am Engineering student and I am so new in Expert system and not so good in programming. I need do write an expert systems that should aid user in picking up best car for them. I found that there ...
0
votes
1answer
45 views

Expert System (Technical Diagnosis)

I'm currently supporting a small part of software which is really error prone. There are a lot of things people can do wrong while installation and so on. So now i remembered things called "expert ...
0
votes
0answers
49 views

characteristic of a good application layout

i am developing a rule-based system that will give suggestions about application/software interface layout. the system will only give suggestions about some visual components of an interface: color ...
0
votes
0answers
27 views

Question for game advisor expert system

Can someone suggest an indirect questions for an expert system about choosing game. The problem is that i don't want to ask direct question like "What genre of game you would like?" the question ...
0
votes
1answer
72 views

Access a slot from multifield in deffunction

I have this function which calculates some value based on multiple slots of multiple multifield facts. Because quite some slots are involved and all of them are needed in the function I was thinking ...
0
votes
0answers
68 views

deicision support system for medicine prescription [closed]

i want to develop a decision support system for medical prescription in ASP.NET i.e. when a new patient come to physician. physician enter paitent details in system e.g physician enter age of patient ...
0
votes
0answers
65 views

Forum Data Analysis

I'm working on an expert system that analysing data from a Forum and get some trustable informations , then i'm using these information to learn my expert system . The question is How to extract ...
0
votes
1answer
79 views

Expert system development roles

What specific "roles" / "divisions of work" would you say exist in the implementation of an enterprise level expert system and do they have proper names? How would the areas and levels of expertise ...
0
votes
1answer
119 views

Propagating Clips Error Messages in PyClips

I'm finding it very difficult to develop with PyClips, because it appears to replace useful error messages thrown by Clips with a generic "syntax error" message. This makes debugging very laborious ...
0
votes
1answer
65 views

Dereferencing a Slot in a Matched Fact in Clips

How do you dereference a slot in a fact matched in the LHS of a rule? If a variable matches a fact, I can't find how to create further conditions that match slots within that fact. For example, in ...
0
votes
1answer
123 views

Clips matching expression is not working

hello in clips i have this template: (deftemplate cell(slot x)(slot y)(slot alive)) and this fact : (start 1 1) then i have this claus in the LHS : ?start<-(start ?x ?y) and i want to get ...

1 2