5

Perceptrons, a simple form of supervised machine learning, must be trained with a set of known good inputs before they can "learn" by adjusting internal weights assigned to inputs, based on the accuracy of its results.

Similarly, we know that reinforcement learning and unsupervised neural networks are able to learn without any known model of the problem; they can be designed to collect information about an environment only by interacting with it.

Can symbolic AI be used to design a system that can achieve this "naive learning," or is this a property exclusive to certain soft computing techniques?

asked Apr 5, 2011 at 18:28
1

3 Answers 3

2

What's the difference between having known good inputs and interacting with the environment? In both cases, you have inputs to the learning algorithm that get a value of some sort. (Similarly, perceptrons are artificial neural nets, their failing being the linear functions in the nodes.)

There are various sorts of unsupervised learning algorithms, although since they don't have known answers they primarily work by sorting inputs into various classes. One simple one is to represent inputs with N values in N-space, and using clustering algorithms to get classifications.

answered Apr 5, 2011 at 19:22
0
3

The symbolic methods of machine learning encompass both supervised and unsupervised learning.

Supervised symbolic learning covers mining logical rules and dependencies from data:

and also learning concepts from data:

For unsupervised symbolic learning the well known example is conceptual clustering.

So supervised and unsupervised learning aren't a sub-symbolic (i.e. artificial neural networks, Bayesian classifiers...) only AI topic.

answered Aug 5, 2015 at 10:35
1

Unsupervised learning techniques would only fit classification problems. If you are interested in decision making agents then there must be some feedback to reward the agent for the right decisions.

answered Aug 22, 2017 at 16:01

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.