Caesar AI Atlas

Перцептрон

Caesar AI Atlas Definition

Перцептрон — это ранний алгоритм обучения с учителем для бинарной классификации. Он обучает линейную границу решения, корректируя веса на основе ошибок классификации.

Other Definitions

Перцептрон Source

An algorithm for supervised learning of binary classifiers.

Перцептрон Source

A system (either hardware or software) that takes in one or more input values, runs a function on the weighted sum of the inputs, and computes a single output value. In machine learning, the function is typically nonlinear, such as ReLU, sigmoid, or tanh. For example, the following perceptron relies on the sigmoid function to process three input values: In the following illustration, the perceptron takes three inputs, each of which is itself modified by a weight before entering the perceptron: !A perceptron that takes in 3 inputs, each multiplied by separate weights. The perceptron outputs a single value. Perceptrons are the neurons in neural networks.

Related Terms