TweetFollow Us on Twitter

Expert Systems
Volume Number:2
Issue Number:3
Column Tag:Lisp Listener

Expert Systems

By John Roy

This month, Mactutors' Lisp Listener has a special exclusive. In the first few installments of the Lisp Listener (nine months ago!) the question of how serious one can be when it comes to AI on the Mac was raised. This month we can be confident in saying that Mac can and is being used for developing real AI applications. Last summer the International Joint Conference on Artificial Intelligence (IJCAI) was the place for the unveiling of a relatively large number of AI related products for the Mac. These included ExperLisp version 1.04, ExperOps5, MacProlog, Macscheme and as you will see in what follows the first serious end user expert system development application. John Roy has written for us a good description of what Nexpert is, what it does, and how it does it.

PROGRAMMING IN NEXPERT

by John Roy

What are Expert Systems?

In one sentence, expert systems are programs that imitate human reasoning. They recognize logical patterns that are similar to those recognized by humans, and then reason with them to produce expert-like performance. The term "expert system" should not be confused with "rule-based system" nor "production system". These latter two terms refer to implementation schemes, which are often used to build expert systems.

The process of capturing expert reasoning is called knowledge engineering. Previously, the knowledge engineer had to analyze a domain of expertise and socraticly refine an expert system based upon that expertise until it performed as well as the human. Eventually, these knowledge engineering pioneers found that declarative (rather than procedural) programming paradigms are more appropriate when writing an expert system.

LISP is used as the foundation of many expert systems because of its pattern matching, language extension, and data typing capabilities. These capabilities allow AI programmers to design declarative structures (which hold the expert's knowledge) and inference engines (which imitate the expert's logic). NEXPERT's AI Kernel was designed in LISP on a Symbolics "LISP Machine" before being ported to the Macintosh.

What is NEXPERT?

NEXPERT is a full blown rule-base development environment for serious knowledge engineering. It is the first rule-base development tool designed specifically for writing expert systems on the Macintosh. It uses if...then...do... rules to represent the domain expert's knowledge. It has many sophisticated aids for rule-base development such as: automatic, graphical knowledge traces (better than those in KEE); automatic forward and backward chaining from the same rules (as in ART); an automatic dialogue system (as in PROLOG); an automatic explanation facility (How, Why, and Apropos); access to external data bases (those in SYLK form); and execution of external, compiled programs (such as those developed in C).

It does not have a frame system, nor automatic belief maintenance. Not incorporating a belief maintenance system was a good idea, since no general theories are available, and each expert system must tailor uncertainty handling to the specific application. However, no frame system access means (1) no object oriented data structures, (2) no message passing, (3) no inheritance of attributes, and (4) instantiation of flavors. Frame systems concern design, maintenance, and manipulation of extremely large data bases. For applications where the data base management system already exists, or for which the data base is small (less than 1000 data values), or for which there is a simple taxonomy, the external SYLK file access and external program execution can easily be used to interface and manipulate the applicable data bases.

Enough introduction, let's get down to business.

Basic NEXPERT Programming.

The Rule Editor, shown in Figure 1, is where you view the rules and choose what operation to perform. By clicking on the dog-ear, the pages can be flipped forward and backward. The rules are alphabetically indexed by Hypothesis (which is how the buttons on the right allow rapid movement through the list). It is a bit difficult to understand the rule-base as a whole from only viewing one rule at a time, but the Network discussed later gives the rule-base developer a global view. There are similar windows (called Notebooks) for the Data List and the Hypothesis List. Selection of a rule-base operation is made by clicking on one of the icons at the bottom of the Rule Editor. From the left they are; (1) create a new rule, (2) modify the current rule, (3) create a new rule by copying the current rule, (4) delete the current rule, and (4) save the knowledge base.

I've found that creating a new rule by copying a similar one, is the best way to go, particularly since all of the rule conditions are ANDed together, and the only way to achieve an OR is to create another rule with the ORed condition modified. This is the same with OPS5, though OPS5 has a MEMBERSHIP operator and NEXPERT does not.

Once an operation has been selected what I call the rule template interface appears. This is the main development interface. One enters and modifies all of the rules from this rule template interface. All you need to do is fill in the conditions, the hypothesis, and the actions via the pop-up menus shown below. Note that currently only eight (8) conditions and actions can be used in a single rule (i.e. # of conditions + # of actions < 9). If the rule had more than eight, then two rules must be written such that they link together and fire in order. One of the nicest, and oddly important, capabilities available are COPY DATA and COPY HYPOTHESIS. These prevent the rule-base developer from re-typing, and more importantly, misspelling data and hypotheses. Note that NEXPERT is case sensitive, and does not allow spaces within the names given to data.

I've pasted this window together so that all of the pop-up menus are visible at once. The basic rule template (underneath the three pop-up menus) consists of the IF slots, the THEN slot, the AND DO slots, and the CONTEXT slots. By clicking on a slot the appropriate menu will pop-up. Don't worry about the context slots right now, they are an advanced programming feature that allow the rule-base developer to suggest knowledge island transitions, (fully explained in a future article, and needed only for extensive rule-bases). The menu at the left shows all of the tests available to form rule conditions (see Table 1). The menu at the right shows all of the actions that can be performed (see Table 2). The menu in the middle (slightly covered by the other previously mentioned menus) is for entering arguments and equations. The COPY DATA and COPY HYPOTHESIS are available from this menu.

Table 1 - Condition Tests

CANCEL do nothing

CLEAR clear test slot

YES and NO test boolean

>, <, , ¾, =, compare numeric equation to constant

NAME declare global synonym

IS and IS compare multi-valued datum to constant

RESET set datum to "unknown"

EQUAL and

UNEQUAL compare two multi-valued data

Table 1 - Action Operations

CANCEL do nothing

CLEAR clear operation slot

DO perform numeric equation and assign to datum

LET assign multi-valued datum a constant

RESET set datum to "unknown"

SHOW either type out a text file to the Apropos Window

or pop-up a paint picture to fill the screen

LOADKB append another knowledge base to current one

EXECUTE perform external function

RETRIEVE load data from an external SYLK file

Once the rule has been entered the OK button will only darken if the rule is structured properly. Clicking on the CHECK button will highlight the offending slot. If the rule is properly structured, but a datum is misused (eg. using a previously defined boolean in an equation), a message will appear (after the OK button-click) explaining the problem. This is very nice most of the time but can be a pain if you decide that you would like to change the data type of a datum.

NEXPERT has two basic values that any datum may have: NOTKNOWN and UNKNOWN. NEXPERT uses UNKNOWN as the "reset" value. Whenever a datum's value is needed and it is currently UNKNOWN, then NEXPERT will switch to backward chaining to attempt to establish a value from the data already available. If this is unsuccessful then the user is queried, via the Question Window, for a value. NOTKNOWN on the other hand, is used to mean that the user has been questioned and does not know the answer. NOTKNOWN allows default reasoning to be done and prevents NEXPERT from continuing to ask for a value that the user does not know.

Knowcessing

"Knowcess" is the term for the rule-based inferencing process. This is where NEXPERT's AI Kernel shows what it is made of. The process can be initiated by suggesting an hypothesis or volunteering a datum. One may also use a combination of the two. If any data is volunteered, then the system will drive forward, attempting to establish as many hypotheses as possible. You can control this forward chaining via NEXPERT's Strategies (see next NEXPERT article for when, why, and how this should be done). If one only suggests an hypothesis, NEXPERT will begin by looking backward in an attempt to find sufficient information that will prove this hypothesis. This information can lead the system to other hypotheses that need to be established, which can lead to others, which lead to others, etc.

Once the system reaches a rule that has some UNKNOWN datum in it, the user will be prompted for a value (see the example in Figure 3 below). At this point the user can access the multi-level Explanation Facility (via the WHY? and HOW? Buttons ), which is automatically built from the static forward and backward chains already in the rule-base. Note that the system knows that the example datum BOSS-CALLED is a boolean and that the user may answer NOTKNOWN. The last button, Apropos, is for tailoring the system to the application even more. When any Apropos Button is clicked on, NEXPERT will bring up the file (text or pictures) that the rule-base developer has made for this datum. This is very useful for instructing the user about the meaning and use of a specific datum.

There are other windows that allow the rule-base developer to watch the progress of the Knowcess. The Transcript Window keeps a complete record of the session, but it slows down the processing by a factor of eight. There is the option to turn the Transcript Window off, which I always use at run-time. The Hypothesis Window displays the hypothesis currently under consideration. And the Conclusions Window reports whether the hypothesis was rejected, established, or underdetermined. But the best way I have found to debug a rule-base is to get a global view.

As I said before, the way to get a global view is from the Network. This is an automatic, dynamic, graphical knowledge trace. Figure 4 shows NEXPERT in the middle of the KNOWCESS process. The dynamics of the system can be followed by noting (a) in this example, the datum TIME points to the hypotheses DAYTIME, NOON, and WORK, (b) that DAYTIME and NOON have already been established, (c) that the system is considering the hypothesis WORK, and (d) that it is currently prompting for the value of the datum BOSS-CALLED (see arrow and bulls-eye in the lower left corner).

Using the operation icons on the left, the rule-base developer can "navigate through the knowledge islands." The functions called by these icons allow investigation of only those areas of the knowledge graphic that are currently of interest. From the top, the operation icons are: (1) single or multiple knowledge island display, (2) display data that point to this hypothesis, (3) display hypotheses that this datum points to, (4) erase this link, (5) focus attention on this datum or hypothesis, and (6) apropos this datum or hypothesis. These operations only affect the display, not the actual knowledge graph of the rule-base. From this one window all of the rules can be viewed, all of the links between rules can be checked, and the dynamics of the Knowcess process can be monitored; making it an excellent aid in the debugging of a rule-base.

Overall, the programming environment of NEXPERT is very clean and efficient. In the next article on NEXPERT I'll be addressing the more complex issues of the AI Kernel, Controlling the Agenda, Customizing the User Interface, Speeding-Up Execution, Outside Database Access, and of course a Full Bug Report.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links... | Read more »
Price of Glory unleashes its 1.4 Alpha u...
As much as we all probably dislike Maths as a subject, we do have to hand it to geometry for giving us the good old Hexgrid, home of some of the best strategy games. One such example, Price of Glory, has dropped its 1.4 Alpha update, stocked full... | Read more »
The SLC 2025 kicks off this month to cro...
Ever since the Solo Leveling: Arise Championship 2025 was announced, I have been looking forward to it. The promotional clip they released a month or two back showed crowds going absolutely nuts for the previous competitions, so imagine the... | Read more »
Dive into some early Magicpunk fun as Cr...
Excellent news for fans of steampunk and magic; the Precursor Test for Magicpunk MMORPG Crystal of Atlan opens today. This rather fancy way of saying beta test will remain open until March 5th and is available for PC - boo - and Android devices -... | Read more »
Prepare to get your mind melted as Evang...
If you are a fan of sci-fi shooters and incredibly weird, mind-bending anime series, then you are in for a treat, as Goddess of Victory: Nikke is gearing up for its second collaboration with Evangelion. We were also treated to an upcoming... | Read more »
Square Enix gives with one hand and slap...
We have something of a mixed bag coming over from Square Enix HQ today. Two of their mobile games are revelling in life with new events keeping them alive, whilst another has been thrown onto the ever-growing discard pile Square is building. I... | Read more »
Let the world burn as you have some fest...
It is time to leave the world burning once again as you take a much-needed break from that whole “hero” lark and enjoy some celebrations in Genshin Impact. Version 5.4, Moonlight Amidst Dreams, will see you in Inazuma to attend the Mikawa Flower... | Read more »
Full Moon Over the Abyssal Sea lands on...
Aether Gazer has announced its latest major update, and it is one of the loveliest event names I have ever heard. Full Moon Over the Abyssal Sea is an amazing name, and it comes loaded with two side stories, a new S-grade Modifier, and some fancy... | Read more »
Open your own eatery for all the forest...
Very important question; when you read the title Zoo Restaurant, do you also immediately think of running a restaurant in which you cook Zoo animals as the course? I will just assume yes. Anyway, come June 23rd we will all be able to start up our... | Read more »
Crystal of Atlan opens registration for...
Nuverse was prominently featured in the last month for all the wrong reasons with the USA TikTok debacle, but now it is putting all that behind it and preparing for the Crystal of Atlan beta test. Taking place between February 18th and March 5th,... | Read more »

Price Scanner via MacPrices.net

AT&T is offering a 65% discount on the ne...
AT&T is offering the new iPhone 16e for up to 65% off their monthly finance fee with 36-months of service. No trade-in is required. Discount is applied via monthly bill credits over the 36 month... Read more
Use this code to get a free iPhone 13 at Visi...
For a limited time, use code SWEETDEAL to get a free 128GB iPhone 13 Visible, Verizon’s low-cost wireless cell service, Visible. Deal is valid when you purchase the Visible+ annual plan. Free... Read more
M4 Mac minis on sale for $50-$80 off MSRP at...
B&H Photo has M4 Mac minis in stock and on sale right now for $50 to $80 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses: – M4 Mac mini (16GB/256GB): $549, $50 off... Read more
Buy an iPhone 16 at Boost Mobile and get one...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering one year of free Unlimited service with the purchase of any iPhone 16. Purchase the iPhone at standard MSRP, and then choose... Read more
Get an iPhone 15 for only $299 at Boost Mobil...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering the 128GB iPhone 15 for $299.99 including service with their Unlimited Premium plan (50GB of premium data, $60/month), or $20... Read more
Unreal Mobile is offering $100 off any new iP...
Unreal Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering a $100 discount on any new iPhone with service. This includes new iPhone 16 models as well as iPhone 15, 14, 13, and SE... Read more
Apple drops prices on clearance iPhone 14 mod...
With today’s introduction of the new iPhone 16e, Apple has discontinued the iPhone 14, 14 Pro, and SE. In response, Apple has dropped prices on unlocked, Certified Refurbished, iPhone 14 models to a... Read more
B&H has 16-inch M4 Max MacBook Pros on sa...
B&H Photo is offering a $360-$410 discount on new 16-inch MacBook Pros with M4 Max CPUs right now. B&H offers free 1-2 day shipping to most US addresses: – 16″ M4 Max MacBook Pro (36GB/1TB/... Read more
Amazon is offering a $100 discount on the M4...
Amazon has the M4 Pro Mac mini discounted $100 off MSRP right now. Shipping is free. Their price is the lowest currently available for this popular mini: – Mac mini M4 Pro (24GB/512GB): $1299, $100... Read more
B&H continues to offer $150-$220 discount...
B&H Photo has 14-inch M4 MacBook Pros on sale for $150-$220 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – 14″ M4 MacBook Pro (16GB/512GB): $1449, $150 off MSRP – 14″ M4... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.