Questions tagged [expert-systems]

For questions related to expert systems, which are computer systems that emulate the decision-making ability of a human expert. Expert systems are designed to solve complex problems by reasoning through bodies of knowledge, represented mainly as if-then rules. 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 artificial intelligence software (symbolic AI).

For more info, see https://en.wikipedia.org/wiki/Expert_system.

16 questions
16
votes
3 answers

What roles knowledge bases play now and will play in the future?

Nowadays, artificial intelligence seems almost equal to machine learning, especially deep learning. Some have said that deep learning will replace human experts, traditionally very important for feature engineering, in this field. It is said that…
9
votes
2 answers

Is the expert system still in use today?

In my country, the Expert System class is mandatory, if you want to take the AI specialization in most universities. In class, I learned how to make a rule-based system, forward chaining, backward chaining, Prolog, etc. However, I have read…
8
votes
2 answers

Is anybody still researching GOFAI?

A lot of textbooks and introductory lectures typically split AI into connectionism and GOFAI (Good Old Fashioned AI). From a purely technical perspective, it seems that connectionism has grown into machine learning and data science, while nobody…
4
votes
4 answers

Are CRUD webapps today the modern version of the "expert system"?

From Wikipedia, citations omitted: 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,…
Left SE On 10_6_19
  • 1,660
  • 9
  • 23
3
votes
1 answer

If expert systems are a bunch of if-then-else statements, then how are they termed as AI?

An artificial intelligence (AI) is often defined as something that can learn over time and can imitate human behaviors. If an Expert system (e.g. MYCIN) that only involves if-then-else statements qualifies to be an AI, then every program we write in…
Himanshuman
  • 139
  • 5
3
votes
1 answer

A comparison of Expert Systems and Machine Learning approaches in terms of run-time-efficiency and time/space complexity

For part of a paper I am writing on Clinical Decision Support Systems (computer-aided medical decision making, e.g. diagnosis, treatment), I am trying to compare Expert Systems with systems based on Machine Learning approaches (Deep Learning,…
2
votes
0 answers

Why did MYCIN fail?

I've been reading about expert systems and started reading about MYCIN. I was astonished to find that MYCIN diagnosed patients better than the infectious diseases physicians. http://www.aaaipress.org/Classic/Buchanan/Buchanan33.pdf Since, it had…
SeanJ
  • 121
  • 5
2
votes
1 answer

How to build an expert system similar to ES-Builder Web

I made a simple expert system using ES-Builder. Please click the link to view it. ES-Builder is a web-based expert system shell. There is a tree-based knowledge representation. In ES builder, User Interfaces are also automatically designed. They…
2
votes
1 answer

Are Relational DBs and SQL used in Expert Systems?

In the book Prolog Programming for Artificial Intelligence, a large and intricate chapter (chapter 14) is dedicated to Expert Systems. In these systems, a knowledge-database is represented through facts and rules in a declarative manner, and then…
1
vote
2 answers

Defining rules for an expert system

I'm doing a project for my last university examination but I'm having some troubles! I'm making an expert system who should be able to assemble a computer after asking some questions to the user. It works but according to my teacher I need to define…
Mark
  • 31
  • 2
1
vote
2 answers

Is there any other (possibly less popular) approach to create AI apart from statistical methods?

From what I have gathered so far, an AI has some prior (stored in the form of some probability distribution), and, based on experiences/data, changes the distribution (via Bayes rule) accordingly. This idea seems intuitively correct, as humans do…
1
vote
0 answers

Apart from ontologies, which other methods for knowledge representation are there in Artificial Intelligence?

From what I have been reading, I see statements like Ontology is a common method used for knowledge representation in artificial intelligence. But there is never really a discussion around what other options are available. To allow me to research…
1
vote
0 answers

How do I write production systems?

I understand that I can draw a state-space graph for any problem. However, here is the problem: I can't really figure out how to make production systems. I am solving the FWGC (Farmer, Wolf, Goat, Cabbage) River Crossing Puzzle using a state-space…
qsaso
  • 111
  • 2
1
vote
0 answers

Trying to get started with LISA and Lisp

I am trying to to do a sort of block-validator for bitcoin(and alike chains), in it I need to depending on chain and block-height only allow certain operators in the transactions scripts. One thought I had was that this might be something that LISA…
0
votes
2 answers

Can a system of If-Then rules be regarded as AI?

Expert Systems (ES) are regarded as AI. However, ES can be as simple as a system of If-Then rules. But AI seems like a big name for a set of (could be rather simple) If-Then rules. Is this indeed the case that certain systems of If-Then rules are…
Qwerty
  • 1
1
2