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

Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »
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 below... | Read more »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »

Price Scanner via MacPrices.net

Apple Watch Ultra 2 now available at Apple fo...
Apple has, for the first time, begun offering Certified Refurbished Apple Watch Ultra 2 models in their online store for $679, or $120 off MSRP. Each Watch includes Apple’s standard one-year warranty... Read more
AT&T has the iPhone 14 on sale for only $...
AT&T has the 128GB Apple iPhone 14 available for only $5.99 per month for new and existing customers when you activate unlimited service and use AT&T’s 36 month installment plan. The fine... Read more
Amazon is offering a $100 discount on every M...
Amazon is offering a $100 instant discount on each configuration of Apple’s new 13″ M3 MacBook Air, in Midnight, this weekend. These are the lowest prices currently available for new 13″ M3 MacBook... Read more
You can save $300-$480 on a 14-inch M3 Pro/Ma...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
24-inch M1 iMacs available at Apple starting...
Apple has clearance M1 iMacs available in their Certified Refurbished store starting at $1049 and ranging up to $300 off original MSRP. Each iMac is in like-new condition and comes with Apple’s... Read more
Walmart continues to offer $699 13-inch M1 Ma...
Walmart continues to offer new Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBook for sale by... Read more
B&H has 13-inch M2 MacBook Airs with 16GB...
B&H Photo has 13″ MacBook Airs with M2 CPUs, 16GB of memory, and 256GB of storage in stock and on sale for $1099, $100 off Apple’s MSRP for this configuration. Free 1-2 day delivery is available... Read more
14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more
Apple M2 Mac minis on sale for up to $150 off...
Amazon has Apple’s M2-powered Mac minis in stock and on sale for $100-$150 off MSRP, each including free delivery: – Mac mini M2/256GB SSD: $499, save $100 – Mac mini M2/512GB SSD: $699, save $100 –... Read more
Amazon is offering a $200 discount on 14-inch...
Amazon has 14-inch M3 MacBook Pros in stock and on sale for $200 off MSRP. Shipping is free. Note that Amazon’s stock tends to come and go: – 14″ M3 MacBook Pro (8GB RAM/512GB SSD): $1399.99, $200... Read more

Jobs Board

Housekeeper, *Apple* Valley Village - Cassi...
Apple Valley Village Health Care Center, a senior care campus, is hiring a Part-Time Housekeeper to join our team! We will train you for this position! In this role, Read more
Sublease Associate Optometrist- *Apple* Val...
Sublease Associate Optometrist- Apple Valley, CA- Target Optical Date: Apr 20, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92307 **Requisition Read more
*Apple* Systems Administrator - JAMF - Syste...
Title: Apple Systems Administrator - JAMF ALTA is supporting a direct hire opportunity. This position is 100% Onsite for initial 3-6 months and then remote 1-2 Read more
Relationship Banker - *Apple* Valley Financ...
Relationship Banker - Apple Valley Financial Center APPLE VALLEY, Minnesota **Job Description:** At Bank of America, we are guided by a common purpose to help Read more
IN6728 Optometrist- *Apple* Valley, CA- Tar...
Date: Apr 9, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92308 **Requisition ID:** 824398 At Target Optical, we help people see and look great - and Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.