Questions tagged [expert-system]

In artificial intelligence, an expert system is a computer system that emulates the decision-making ability of a human expert.

In artificial intelligence, an expert system is a computer system that emulates the decision-making ability of a human expert. Expert systems are designed to solve complex problems by reasoning about knowledge, like an expert, and not by following the procedure of a developer as is the case in conventional programming. The first expert systems were created in the 1970s and then proliferated in the 1980s. Expert systems were among the first truly successful forms of AI software.

330 questions
0
votes
2 answers

Add numeric values to a variable in ActionListener, to show variable result

What I need to make: Its a basic, ask user questions and then supply result in the end application. I've made questions on different JPanels, when user clicks on a choice, I want to record his choice and also move to the next question. A final…
satnam
  • 1,457
  • 4
  • 23
  • 43
0
votes
1 answer

Error 800: Missing/empty knowledge base

Currently i having an Assignment of AI(Artificial Intelligence) to develop an Expert System. We are using SWI-PROLOG as our practical class learning software, and now i am trying to apply e2glite to my Assignment. I found that e2glite is able to…
Jack Wong
  • 79
  • 1
  • 12
0
votes
3 answers

Expert system for writing programs?

I am brainstorming an idea of developing a high level software to manipulate matrix algebra equations, tensor manipulations to be exact, to produce optimized C++ code using several criteria such as sizes of dimensions, available memory on the…
Anycorn
  • 50,217
  • 42
  • 167
  • 261
0
votes
1 answer

How can I use another viewer in AI::ExpertSystem::Advanced

I tried to use AI::ExpertSystem::Advanced. I read in documentation that I can use another viewers. You can see it there: viewer Is the object AI::ExpertSystem::Advanced will be using for printing what is happening and for interacting with the…
Tomas Kocian
  • 83
  • 1
  • 7
0
votes
1 answer

How can I find place of error in perl

I tried to run AI::ExpertSystem::Advanced from CGI website. My server (xampp on localhost) have in log this error: The system cannot find the path specified. Unable to get Terminal Size. The Win32 GetConsoleScreenBufferInfo call didn't work. The…
Tomas Kocian
  • 83
  • 1
  • 7
0
votes
2 answers

CLIPS simple percentage defrule

At the end, when the program is supposed to print the percentage certainties, the program hangs. What might be wrong? It has to be the calculate-percentage rule, since when removed, the non-percentaged data is printed. (defmodule PRINT-RESULTS…
user
  • 61
  • 1
  • 1
  • 8
0
votes
1 answer

expert system user input to call a function

I'm wondering if anyone could help, i've been playing around with the online CLIPS tutorials so i kinda have the basics, i'm just trying to play around with a rule that would ask the user for a Boolean 'y' or 'n' response that would call a python…
0
votes
1 answer

compare to nil in clips

How do I compare to nil in clips ? I have tried (defrule update-time ?cur-time <- (current-time ?time) (order (event-time ?new-time-o&:(neq…
Shashank Shekhar
  • 3,958
  • 2
  • 40
  • 52
0
votes
1 answer

self modifying rules in an expert system

is there any way to make the rules on an Expert System be modified by the system itself so tha t it can learn from its experiences? -suggestions are always welcome.Thanks!
0
votes
1 answer

CLIPS increment certainty to some items in a list

I have a wine defined like this: (deftemplate wine (slot name) (slot color) (slot certainty (type NUMBER) (default 0))) And the list dof wines defined like this: (deffacts wines (wine (name "Chardonnay") (color white)) (wine (name…
Igor Ralic
  • 14,975
  • 4
  • 43
  • 51
0
votes
2 answers

Building an expert system/decision based in PHP

The problem I am trying to solve is I have 16 different animals and I need to write a PHP script that asks the user 4 yes/no questions and each question narrows down the available animals until eventually the answer is displayed. This means that the…
Harry12345
  • 1,144
  • 6
  • 20
  • 47
-1
votes
1 answer

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 tax calculation, Suppose a taxpayer is physician. He…
-1
votes
1 answer

CLIPS: How can I allow users to input sentences as answers? Jasmine Flower Guess

Im currently working on a CLIPS program that guesses the name of the jasmine flower based only on the flower color and season, but I don't know how to use sentences as possibles answers to be able to get answers like "spring to autumn" Here's the…
-1
votes
1 answer

I have an error on this prolog code line 10 word first I cant figure it out what's my mistake plz help me

go:- university(area), write('Shall we start?: '), write(area), nl, undo. university(csandse) :- csandse, !. csandse :- verify(labs), verify(classrooms), verify(Teachers Staffroom), verify(Department's…
-1
votes
1 answer

How can I change a working python program so that it runs as python flask program

I have a python program, an expert system, it runs ok as a purely python program. but I now want to run it as a python flask program so that it can appear as on a browser and maybe be integrated as a whatsapp or sms chatbot. the change from just…
1 2 3
21
22