Activation function in Perceptron

Duration: 10 min

This video lesson is available to enrolled students.

Enroll to watch — ZERO TO HERO

AI Summary

An AI-generated summary of this video lecture.

The video provides an educational overview of activation functions in perceptrons, focusing on their role in neural networks. It begins by introducing two primary types of activation functions: the hard threshold function and the logistic (sigmoid) function. The hard threshold, shown in figure (a), produces a binary output—1 if the net input exceeds a certain threshold, and 0 otherwise. This type of function defines what is traditionally called a perceptron. In contrast, the logistic function, depicted in figure (b), generates a smooth S-shaped curve that maps inputs to values between 0 and 1, leading to the concept of a sigmoid perceptron. The video presents the mathematical formulation for activation: a_j = g(in_j) = g(∑ w_ij * a_i), where in_j is the weighted sum of inputs, and g represents the activation function. The discussion includes a diagram illustrating how inputs are weighted, summed, compared to a threshold (for the hard threshold function), and passed through an activation function. The video also highlights that perceptrons are single-layer feed-forward neural networks introduced by Frank Rosenblatt in 1957, based on the original MCP neuron model. The structure includes bias weights and input summation, with a decision rule: output 1 if the sum of weighted inputs is greater than or equal to the threshold, otherwise 0. The presentation uses visual aids such as graphs and diagrams to compare activation function behaviors and explain the computational flow within a perceptron unit. The content emphasizes how different activation functions lead to distinct types of neural units and influence the network's learning capabilities.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video introduces activation functions in neural networks, contrasting the hard threshold function (perceptron) and the logistic (sigmoid) function. It presents the mathematical formula a_j = g(in_j) = g(∑ w_ij * a_i), where in_j is the weighted sum of inputs and g is the activation function. Diagrams illustrate both functions graphically: figure (a) shows a step-like hard threshold, and figure (b) displays an S-shaped logistic curve. The on-screen text identifies the hard threshold as defining a perceptron and notes that the sigmoid function leads to the term 'sigmoid perceptron'. A schematic diagram of a perceptron unit includes bias weight w_0j and input summation, with labels such as 'Bias Weight' and 'a_j = g(in_j)' visible on the board.

  2. 2:00 5:00 02:00-05:00

    The video elaborates on the activation process in a perceptron, explaining that the output is determined by applying an activation function to the net input. It compares two types of functions: a hard threshold (figure a) and a logistic function (figure b), with the instructor pointing to each graph while discussing their differences. The formula a_j = g(in_j) = g(∑ w_i,j * a_i) is written on the board, and the term 'perceptron' is used for the hard threshold case while 'sigmoid perceptron' refers to the logistic function. The diagram includes a bias weight w_0j and input a_0 = 1, emphasizing the role of bias in the summation. The instructor highlights how these functions transform inputs into outputs, with the hard threshold producing binary results and the sigmoid providing a continuous range.

  3. 5:00 9:34 05:00-09:34

    The video explains the structure of a single-layer feed-forward neural network known as a perceptron, referencing Frank Rosenblatt's 1957 introduction and its basis on the MCP neuron model. A diagram shows inputs x1, x2, x3 being weighted by w1, w2, w3 and summed to produce Σ w_i x_i, which is then compared against a threshold. The output is 1 if the sum exceeds or equals the threshold, otherwise 0. This decision rule is written on screen as '1 if Σ w_i x_i >= threshold, else 0'. The discussion continues with a comparison of activation functions: the hard threshold (figure a) and logistic function (figure b), with the instructor pointing to each graph. The formula a_j = g(in_j) is reiterated, and components like bias weight w_0j and input a_0 = 1 are labeled. The video emphasizes how these functions determine the output behavior of neural units and introduces the concept of a sigmoid perceptron when using the logistic function.

The video systematically introduces activation functions in perceptrons, starting with the hard threshold function and contrasting it with the logistic (sigmoid) function. It presents both mathematical formulations and graphical representations to illustrate how these functions transform weighted inputs into outputs. The hard threshold function leads to binary output and defines a traditional perceptron, while the logistic function produces continuous outputs between 0 and 1, forming the basis of a sigmoid perceptron. The video emphasizes that these functions are central to determining how neural network units compute outputs and highlights the historical context of perceptrons, introduced by Frank Rosenblatt in 1957. Diagrams and on-screen equations support the explanation of input summation, bias weights, threshold comparison, and activation processes. The teaching progression moves from conceptual definitions to mathematical formalism and visual examples, reinforcing how different activation functions influence network behavior. The content is structured to help students understand the foundational differences between perceptron types and their implications for neural network design.