user3408069
user3408069

Reputation:

Rule based expert system that helps with implementation phase

I need examples of Rule Based Expert Systems for the implementation phase of the software engineering, I have found out about Pyke, but Im not really sure if it is an Expert System...can anyone give me an example of what a RBES for implementation really is?

Upvotes: 1

Views: 1948

Answers (1)

bogatron
bogatron

Reputation: 19169

There is a distinction between expert system tools and expert systems. Pyke is a tool (python module) that can be used to implement expert systems. Similarly, CLIPS - as its website states - is "A Tool for Building Expert Systems" but it is not itself an expert system. Expert system tools such as PyKE, CLIPS, JESS, drools, etc. typically provide a language for defining expert systems, as well as a compiler or interpreter within which the system can be efficiently executed.

If you are interested in examples of expert systems implemented with some of these tools, most of them will have examples provided (or linked) on their web sites. You can find some examples of relatively simple systems implemented with CLIPS here.

Upvotes: 3

Related Questions