Questions tagged [symbolic-ai]

For questions related to symbolic artificial intelligence, which is also known as good old-fashioned artificial intelligence (GOFAI), which is an expression coined by John Haugeland in his 1985 book "Artificial Intelligence: The Very Idea".

For more info, see, for example, https://en.wikipedia.org/wiki/Symbolic_artificial_intelligence.

32 questions
9
votes
1 answer

What kind of body (if any) does intelligence require?

In the mid 1980s, Rodney Brooks famously created the foundations of "the new AI". The central claim was that the symbolist approach of 'Good Old Fashioned AI' (GOFAI) had failed by attempting to 'cream cognition off the top', and that embodied…
NietzscheanAI
  • 7,206
  • 22
  • 36
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
3 answers

What kinds of problems can AI solve without using a deep neural network?

A lot of questions on this site seem to be asking "can I use X to solve Y?", where X is usually a deep neural network, and Y is often something already addressed by other areas of AI that are less well known? I have some ideas about this, but am…
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…
7
votes
1 answer

Which rules should I define for the predicate "not_to_far" of the exercise 1.1 of the book "Simply Logical: Intelligent Reasoning by Example"?

I've just started reading a book about AI. The book is Simply Logical: Intelligent Reasoning by Example. There is a very basic exercise (on page 19 of the pdf, page 5 of the book), but I can't figure it out. The exercise is Exercise 1.1. Two…
ihavenokia
  • 173
  • 2
  • 6
6
votes
2 answers

What are the differences in scope between statistical AI and classical AI?

What are the differences in scope between statistical AI and classical AI? Real-world examples would be appreciated.
dua fatima
  • 323
  • 1
  • 2
  • 10
5
votes
3 answers

Why is symbolic AI not so popular as ANN but used by IBM's Deep Blue?

Everybody is implementing and using DNN with, for example, TensorFlow or PyTorch. I thought IBM's Deep Blue was an ANN-based AI system, but this article says that IBM's Deep Blue was symbolic AI. Are there any special features in symbolic AI that…
Dee
  • 1,283
  • 1
  • 11
  • 35
5
votes
1 answer

Can (trained) neural networks be combined with symbolic AI to perform operations like AND?

Does anyone work out ways of relating trained neural networks by symbolic AI? For example, if I train a network on pictures of dogs, and I train a network on pictures of shirts. You could imagine that the simplest way (without going through the…
5
votes
1 answer

What are some examples of Classical AI applications?

I believe that Classical AI uses deductive thought processes. For example, given as a set of constraints, deduce a conclusion. What are some examples of successfully applying Classical AI to real-world problems?
WilliamKF
  • 2,493
  • 1
  • 24
  • 31
4
votes
0 answers

What are some interesting recent papers that synthesize symbolic AI with Deep Learning?

A lot of people seem to be under the impression that combining GOFAI and contemporary AI will make models more general. I'm particularly interested in reasoning through analogy or case-based reasoning.
4
votes
1 answer

Is it possible to do K-nearest-neighbours before training DNN

The following X-shape alternated pattern can be separated quite well and super fast by K-nearest Neighbour algorithm (go to https://ml-playground.com to test it): However, DNN seems to face great struggles to separate that X-shape alternated data.…
4
votes
3 answers

Shouldn't Gödel's incompleteness theorems disprove the physical symbol system hypothesis?

According to the Wikipedia page of the physical symbol system hypothesis (PSSH), this hypothesis seems to be a vividly debated topic in philosophy of AI. But, since it's about formal systems, shouldn't it be already disproven by Gödel's theorem? My…
4
votes
1 answer

Can rule induction be considered a way to "hybridize" probabilistic / statistical approaches and symbolic approaches?

In years past, GOFAI (Good Old Fashioned AI) was heavily based on "rules" and symbolic computation based on rules. Unfortunately, that approach ran into stumbling blocks, and the world moved heavily towards statistical/probabilistic approaches…
mindcrime
  • 3,737
  • 14
  • 29
3
votes
1 answer

Historical weakness of GOFAI in relation to partisan combinatorial games?

I was recently perusing the paper Some Studies in Machine Learning Using the Game of Checkers II--Recent Progress (A.L. Samuel, 1967), which is interesting historically. I was looking at this figure, which involved Alpha-Beta pruning. It occurred…
DukeZhou
  • 6,237
  • 5
  • 25
  • 53
3
votes
1 answer

What is the "state of the art" in (at least partially) symbolic/logic-based chat bots/AI assistants?

ChatGPT has had a lot of buzz around it recently, and for good reason. It has shown some amazing capabilities in responding to new information, as well as in generalizing new information that has been given to it. However, ChatGPT also regularly…
1
2 3