One of Japan's largest directories x find the right AI in as little as a minute

▶︎ For those who want to list their service

Subscribe to newsletter (free)
Subscribe to newsletter (free)
  1. AI BEST SEARCH
  2. AI Glossary & Keyword Index [AI BEST SEARCH]
  3. Perceptron

Perceptron

The Perceptron is one of the most fundamental artificial neuron models, proposed in the 1950s by American psychologist Frank Rosenblatt. It is a simple binary classifier that receives multiple input signals, computes a weighted sum, and outputs "1" if the sum exceeds a threshold, or "0" otherwise. Basic structure of a perceptron: • Input layer: Receives multiple features (x₁, x₂, ..., xₙ) • Weights (w₁, w₂, ..., wₙ): Coefficients applied to each input • Bias: A constant term that adjusts the output threshold • Activation function (typically a step function): Determines whether the output is 1 or 0 This simple structure makes it capable of solving linearly separable problems (classification problems that can be separated by a straight line). However, the perceptron has a fundamental limitation — it cannot solve the XOR problem — which contributed to the "AI winter" of the early 1980s. The subsequent development of multi-layer perceptrons (MLPs) and backpropagation overcame this limitation, laying the groundwork for modern deep learning. Primary significance and uses: • The theoretical starting point for machine learning algorithms • Simple pattern recognition (e.g., spam email classification) • An ideal teaching tool for understanding the learning principles of neural networks While the perceptron itself is rarely used in modern complex AI models, it remains an indispensable concept for understanding the history and inner workings of neural networks.