Questions tagged [perceptron]

For questions about the perceptron learning algorithm in Machine Learning.

Perceptron is a machine learning algorithm that helps provide classified outcomes for computing. It dates back to the 1950s and represents a fundamental example of how machine learning algorithms work to develop data.

The perceptron is an algorithm for supervised learning of binary classifiers (functions that can decide whether an input, represented by a vector of numbers, belongs to some specific class or not). It is a type of linear classifier, i.e. a classification algorithm that makes its predictions based on a linear predictor function combining a set of weights with the feature vector. The algorithm allows for online learning, in that it processes elements in the training set one at a time.

Perceptron - Wikipedia

Perceptron - Techopedia

55 questions
5
votes
1 answer

What's the difference between a "perceptron" and a GLM?

In a comment to this question user nbro comments: As a side note, "perceptrons" and "neural networks" may not be the same thing. People usually use the term perceptron to refer to a very simple neural network that has no hidden layer. Maybe you…
R.M.
  • 308
  • 1
  • 6
2
votes
0 answers

Was the original perceptron machine really just comparing images to the "average image for each class"?

I've been looking into the history of artificial neural networks, and only recently learned that the original Mark 1 Perceptron was only a single layer network. It would iteratively modify the weights of connections using weights from the image…
0
votes
1 answer

Is the Adaline just a Perceptron that uses Linear activation function and MSE cost function, and all the rest of steps are the same of Perceptron?

https://en.wikipedia.org/wiki/ADALINE https://pt.wikipedia.org/wiki/Perceptron I have a doubt about this: is the Adaline just a Perceptron that uses Linear activation function and MSE cost function, and all the rest of steps are the same of…
will The J
  • 267
  • 6