CH2: Neural Network Foundations

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:42 AM on 6/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

What defines a neural network as a "deep" network?

Having 2 or more hidden layers between the input and output layers.

2
New cards

What are three alternative names for an Artificial Neuron?

Semi-Linear Unit / Binary Neuron / McCulloch-Pitts (MCP) Neuron.

3
New cards

What three actions does a single node in a hidden layer perform?

Receive data, process data, and send data.

4
New cards

What is the primary limitation of a single-layer neural network?

It is limited to solving linear classification problems (linearly separable datasets).

5
New cards

What roles do weights and biases play in a perceptron?

Weights adjust the influence of input values, while the bias shifts the output to provide flexibility.

6
New cards

What is the purpose of an Activation Function?

It transforms the weighted sum to determine whether a neuron should "fire" (be activated) and produce a final output.

7
New cards

What are some common activation functions?

Step Function, Sigmoid, Tanh, ReLU, Leaky ReLU, Softmax, Swish, ELU.

8
New cards

What is the purpose of a Loss Function?

It measures how wrong the model’s prediction is by evaluating how well predictions match actual target values.

9
New cards

What are common loss functions?

Mean Squared Error (MSE), Mean Absolute Error (MAE), Binary Cross-Entropy, Categorical Cross-Entropy, Huber Loss.

10
New cards

What do Learning Mechanisms like Backpropagation do?

They define how the network learns from errors and adjusts weights and biases during training to minimize mistakes.

11
New cards

What is the role of an Optimizer Function?

It controls the training process by deciding exactly how weights and parameters are updated using gradients.

12
New cards

What are some common optimizer functions?

SGD, Momentum, Adagrad, RMSprop, Adam, Nadam.