In artificial intelligence, an expert system is a computer system that emulates the decision-making ability of a human expert.
0
votes
0answers
6 views
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 ...
1
vote
0answers
6 views
How to get a parseJSON in Andoid through php
I have a part of code from php like this. Any two table tbl_gejala for change a sentence and tbl_hormon for move a Layout. Tbl_gejala with $id_g and tbl_hormon $id_h. and this php called by ...
0
votes
0answers
14 views
How to use other viewer class than terminal in AI::ExpertSystem::Advanced
I tried to use perl module AI::ExpertSystem::Advanced.
I want to try another viewer class - for example my browser.
How can I do it???
my $ai = AI::ExpertSystem::Advanced->new(
...
-1
votes
0answers
37 views
Is it possible to run AI::ExpertSystem::Advanced from something other than a terminal?
I want to know if it is possible to run the Perl module AI::ExpertSystem::Advanced from something other than a terminal? If so then how?
2
votes
0answers
84 views
Expert system doesnt initialize
I am using AI::ExpertSystem::Advanced to run an expert system from web content.
I have a website where I run a Perl script with this code:
use strict;
use warnings;
use AI::ExpertSystem::Advanced;
...
0
votes
1answer
42 views
Load initial facts from file in perl expert system advanced
I am trying to use the Perl AI::ExpertSystem::Advanced module.
When I load initial fact from file it always say error:
No inference was possible
In module file - Advanced.pm
my ($self, $return) = ...
1
vote
1answer
38 views
Output of JESS in Java
I want to send a "fact" to a JESS file within java and get the results back. I basicly batch the JESS file and then send my data (structure in here) into the engine by .add(). I tried to get the JESS ...
1
vote
1answer
67 views
how to combine these two rules with CLIPS?
I have two rules in CLIPS which I want to combine if they're both true...not sure how to do it though. I have an attribute which is called grant-eligible....I was thinking if I set it to TRUE then I ...
0
votes
1answer
57 views
CLIPS infinite facts
I am developing an expert system which will make admission decisions using PyClips. However, the code kept generating 'out of memory' errors. I think I have isolated my problem. It is something wrong ...
1
vote
3answers
46 views
Number equality test fails in CLIPS pattern matching?
I have this following rule in my CLIPS file:
(defrule check-final (declare (salience 12))
?scnt <- (set-count (value ?v) (class ?c))
(test (= ?v ?*total*))
=>
(printout T ...
0
votes
1answer
120 views
Loading data from file in perl module expert system
While I tried to use the Perl AI::ExpertSystem::Advanced module, I had difficulties to load initial facts from file. How should I do it?
my $ai = AI::ExpertSystem::Advanced->new(
...
0
votes
1answer
105 views
Store output from expert system in perl
I am trying to use the Perl AI::ExpertSystem::Advanced module, and I want to store result (stdout) to file. I want to store all goal (only names of goals without other attributes). How should i do it?
...
1
vote
1answer
86 views
How can I use sign in array of initial facts with Perl module AI::ExpertSystem::Advanced
I am trying to use the Perl AI::ExpertSystem::Advanced module, and I try to use sign in the array of initial facts. The documentation of this module shows an example:
my $ai = ...
-5
votes
1answer
247 views
forward and backward chaining in haskell [closed]
I am trying to implement forward/Backward chaining in haskell something with a very a small database i.e some kind of text file and basic rules. Help would be appreciated. Thanks
0
votes
1answer
64 views
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 ...
0
votes
1answer
28 views
compare to nil in clips
How do I compare to nil in clips ?
I have tried
(defrule update-time
?cur-time <- (current-time ?time) ...
1
vote
6answers
153 views
What Machine Learning Algorithm would be appropriate for this scenario
I have a PHP/MySQL application that stores symptoms and the appropriate drug. What machine learning algorithm should I use to predict the drug for any symptoms. Also, what would be the format of the ...
1
vote
1answer
46 views
Not able to retrieve the facts in clips
I wish to get a list of friends by using a function.
(deffunction get-freinds-list (?age)
(bind ?facts (find-all-facts ((?f userdata))
(and (eq ?f:name userdata)
...
1
vote
1answer
166 views
how to make a knowledgebase in perl expert system connecting to mysql database [closed]
I want to know something like that. How to make a knowledgebase in perl expert system connect to the mysql database. But when i run this code it wrote mesomething like this:
Error message
Can't ...
0
votes
1answer
43 views
Clips error : No objects of existing classes can satisfy is-a restriction in object pattern
I am getting this error:
[OBJRTBLD2] No objects of existing classes can satisfy is-a restriction in object pattern.
when I run the follοwing rule:
(defrule update_input "Updateinput1"
(object ...
0
votes
0answers
66 views
How can you select an appropriate Inference Engine?
I'm trying to figure out which inference engine can give me the best prediction
, In general there are a lot of considerations: speed, convergence, support for the factors that make up our model, ...
0
votes
1answer
27 views
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
0answers
51 views
Programming a system where users can define their own rules
I want to make a system for users to specify their own rules for when to receive alerts when something happens in their facebook feed. I want them to be able to say 'please send me an alert when Z ...
3
votes
1answer
372 views
Small Expert System in prolog
I'm doing this expert system for classification animals using prolog and I'm using GNU/Prolog and Debian GNU/Linux.
xpositive(symbol,symbol)
xnegative(symbol,symbol)
nondeterm animal_is(symbol)
...
0
votes
0answers
80 views
Ontology editor for CLIPS applications
What GUI-based ontology editors are there that can export ontologies to CLIPS format? I am aware of Protege but some CLIPS language features are not supported and the associated CLIPSTab plugin ...
1
vote
1answer
325 views
Using logical operators in CLIPS
I am trying to define a greater than rule in CLIPS but it doesn't seem to be working. Any idea on how I can fix it. The problem seems to be occurring at defrule btwn100and120.
(defrule part-credits
...
1
vote
1answer
287 views
Should a use a Knowledge Engine for Expert System in Python?
I need to program an expert system in Python (this is the first time I do both). I have to implement a big flow diagram which depends on progressive user input, i. e. the user provides inputs at many ...
3
votes
2answers
79 views
What type of AI to use for predicting part compatibility? [closed]
I'm going to say from the beginning that I am not a programmer, I have a cursory knowledge of different types of AI and am just a businessman building a web app.
Anyways, the web app I am investing ...
0
votes
1answer
55 views
CLIPS Conflict Resolution Strategies
From what I read there are 7 strategies in CLIPS : Depth, Breadth, Simplicity, Complexity, Random, LEX and MEA.
The ones that i have problems with are LEX an MEA. I have read their description on ...
0
votes
1answer
173 views
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 ...
1
vote
3answers
271 views
Native Prolog Shell
Recently I tried the book "Building Expert Systems in Prolog" which is freely available at http://www.amzi.com/ExpertSystemsInProlog.
There is a code called native shell at the appendix along with a ...
1
vote
2answers
2k views
PHP function to increment variable by 1 each time
I have started writing a PHP script for a game about creatures, there are 4 yes/no questions and what I am trying to do is write a function that will display 2 buttons that say yes and no and give ...
0
votes
2answers
472 views
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 ...
1
vote
3answers
94 views
Framework for algorithmic decision process
I am looking for a framework to allow the following:
Implement several algorithms that take as input one or more collections of simple classes (POCO), and result in a new list of POCOs
Each ...
2
votes
1answer
278 views
artificial intelligence and expert systems
I started building my expert system from generating decision tree like this:
decision tree: http://obrazki.elektroda.pl/6125718100_1336340563.png
I used PC-Shell to build expert system, main code ...
2
votes
1answer
363 views
Expert system for android platform
I would like to know what is the best solution to develop an expert system with a pretty large KB for android, should I simply use hundreds of if-else (suppose the user should choose just between YES ...
2
votes
1answer
3k views
Are there open source expert systems with reasoning capabilities?
For learning purposes I'd like to study an open source expert system, in particular one that can reason and explain it's reasoning. Which ones do you know?
0
votes
1answer
203 views
Are there expert system shells for the mac?
Recently I had an interesting AI discussion with a friend, and I became curious about expert systems.
After spending 2 hours on Google I couldn't find anything useful to get started with. Does anyone ...
0
votes
1answer
210 views
Can we count facts with same values in Jess?
Using Jess as the rule engine, we can assert a fact that some witness has seen a person, at some place, and with time associated:
(deffacts witnesses
(witness Batman Gotham 18)
(witness Hulk ...
3
votes
1answer
307 views
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
277 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?
0
votes
1answer
84 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
298 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
416 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 ...
1
vote
2answers
257 views
Good (and recent) resource for expert systems [closed]
Does anyone know any good (and recent) resources for designing expert systems?
0
votes
1answer
190 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 ...
2
votes
4answers
242 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.
4
votes
2answers
511 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 ...
1
vote
1answer
467 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
161 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 ...
