Fill-in-the-Blank: Artificial Neurons and Activation Functions
Back to Pack

Fill-in-the-Blank: Artificial Neurons and Activation Functions

Complete the sentences by filling in the blanks. Each correct answer earns points!

15 Questions • 150 Total Points
1

An is a mathematical model of a biological neuron used as the basic unit of an artificial neural network.

Context: Core definition: Artificial neuron as a computational unit

2

The neuron computes a with bias before applying a nonlinearity.

Context: Bias and weighted summation

3

The standard neuron output has the form y_k = φ(∑_{j=0}^m w_kj x_j), where φ is the .

Context: Activation function role

4

Adding a bias term to the weighted sum causes which shifts the effective decision boundary.

Context: Cause→effect: bias shifts the decision boundary

5

Bias can be implemented by setting x0=+1 and using weight w0=b, so the neuron computes u=∑ w_j x_j before applying φ. This means bias is represented as an extra input with weight .

Context: Bias implementation: x0=+1 and w0=b

6

A outputs 1 when its input meets or exceeds a threshold and outputs 0 otherwise.

Context: Step/threshold activation

7

Using a sigmoid activation in deep multilayer networks causes backpropagated gradients to , making optimization difficult.

Context: Cause→effect: sigmoid leads to vanishing gradients

8

A is defined as f(x)=max(0,x), producing the positive part of its input.

Context: Rectifier/ReLU definition

9

Using a rectifier (ReLU) activation causes training of deeper networks to become and more effective.

Context: Cause→effect: ReLU improves deep training

10

An MCP neuron is a restricted, synchronous, discrete-time threshold model with binary quiet/firing outputs. Its update rule is based on a threshold.

Context: McCulloch–Pitts neuron dynamics

11

MCP neurons can represent linearly separable boolean functions such as AND/OR/NOR, but they cannot compute .

Context: Expressivity limits: MCP cannot compute XOR

12

McCulloch–Pitts (MCP) neuron dynamics and threshold logic enable simulation power: any finite state machine can be simulated by an MCP neural network, and with an infinite tape, MCP networks can simulate any .

Context: Simulation power: FSM and Turing machines

13

In the biological mapping, dendrites correspond to input weighting, the soma performs , and the axon fires when threshold is reached.

Context: Biological neuron components and signal flow

14

Biological axon firing discrete pulses when soma potential reaches threshold causes pulse rate to be translated into continuous-valued signaling for simulations. This effect is produced by higher firing frequency increasing the rate at which neighboring cells receive .

Context: Cause→effect: axon firing frequency and signaling

15

Do not confuse a neuron’s activation function with a linear system’s transfer function. The text warns that the should not be mistaken for a transfer function.

Context: Common confusion: activation function vs transfer function