PDF Notes: 32

    Master this deck with 16 terms through effective study methods.

    Generated from uploaded pdf

    Created by @__kanak

    What is a Perceptron?

    An algorithm for supervised learning of binary classifiers.

    What defines a biological neuron?

    It integrates multiple signals and generates an output if a threshold is exceeded.

    How does an artificial neuron differ from a biological neuron?

    It is a mathematical function modeled on biological neurons.

    What is the purpose of the activation function in a Perceptron?

    It determines if the output signal is generated based on the weighted input.

    What happens if the input signals exceed a certain threshold in a Perceptron?

    The Perceptron outputs a signal indicating activation.

    What is the Perceptron Learning Rule?

    It allows the algorithm to learn optimal weight coefficients automatically.

    What is the difference between single layer and multilayer Perceptrons?

    Single layer can only learn linearly separable patterns; multilayer can handle non-linear patterns.

    What does the output of a Perceptron represent?

    It indicates whether the neuron is triggered based on the weighted input.

    What is the role of weights in a Perceptron?

    They determine the contribution of each input to the output.

    What is the function of the Softmax function?

    It outputs probabilities for different classes, summing to 1.

    How does the sigmoid function behave with input values?

    It outputs values between 0 and 1, useful for probability mapping.

    What is the significance of the bias unit in a Perceptron?

    It adjusts the decision boundary without dependence on input values.

    What does the hyperbolic tangent function output range?

    It ranges between -1 and +1, improving convergence in training.

    What is the consequence of using the ReLU activation function?

    It eliminates negative outputs, enhancing performance in deep networks.

    What does the Perceptron decision function do?

    It takes a linear combination of input and weight vectors to determine output.

    What is the output of a Perceptron when the weighted input is less than zero?

    The output is -1, indicating the neuron did not trigger.