Neural Networks & How to Train Them - Vocabulary

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

1/29

flashcard set

Earn XP

Description and Tags

Vocabulary terms and definitions from the introductory guide on neural networks and model training.

Last updated 3:27 PM on 9/9/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

Neural Network

A parameterized function that transforms an input into an output through connected layers of computation.

2
New cards

Generalization

The central goal of neural network training: achieving useful predictions on new examples from the intended deployment setting, rather than simply memorizing the training set.

3
New cards

Weight

A parameter wjw_j that controls an input connection to a neuron.

4
New cards

Bias

A parameter bb that shifts a neuron's pre-activation independently of the input.

5
New cards

Hyperparameters

Configurations for the model or training process (such as layer width, number of layers, learning rate, batch size, and regularization strength) that are selected using validation results rather than updated by the learning algorithm.

6
New cards

Forward Propagation

The process of evaluating neural network layer operations in sequential order to produce a prediction, while retaining intermediate values for backpropagation.

7
New cards

ReLU

An activation function defined as ReLU(z)=max(0,z)\text{ReLU}(z) = \text{max}(0, z), with a derivative of 11 for z>0z > 0 and 00 for z<0z < 0.

8
New cards

Sigmoid

An activation function defined as sigmoid(z)=11+exp(z)\text{sigmoid}(z) = \frac{1}{1 + \text{exp}(-z)}, which produces outputs in the range (0,1)(0, 1).

9
New cards

Tanh

An activation function with an output range of (1,1)(-1, 1) and a derivative of 1tanh(z)21 - \text{tanh}(z)^2.

10
New cards

Mean Squared Error (MSE)

A regression loss function defined as MSE=1N×sumi((y_hatiyi)2)\text{MSE} = \frac{1}{N} \times \text{sum}_i((\text{y}\_hat_i - y_i)^2) that penalizes large residuals especially strongly.

11
New cards

Logit

An unrestricted model score produced before conversion into a probability.

12
New cards

Softmax

A function that converts KK logits to probabilities summing to 11 for mutually exclusive classes using pk=exp(zk)sumj(exp(zj))p_k = \frac{\text{exp}(z_k)}{\text{sum}_j(\text{exp}(z_j))}.

13
New cards

Partial Derivative

A measure of local loss sensitivity when a specific parameter changes while all other parameters are held fixed.

14
New cards

Backpropagation

An algorithm that applies the chain rule from the loss back toward earlier layers to compute gradients by reusing intermediate derivatives.

15
New cards

Vanishing Gradients

A training phenomenon where repeated derivative products become very small, limiting learning in earlier layers.

16
New cards

Exploding Gradients

A training phenomenon where repeated derivative products become very large, destabilizing parameter updates.

17
New cards

Central Finite-Difference Check

A debugging technique that approximates dLdw\frac{dL}{dw} using L(w+eps)L(weps)2×eps\frac{L(w + \text{eps}) - L(w - \text{eps})}{2 \times \text{eps}} while holding other parameters fixed.

18
New cards

Mini-batch

The subset of training examples used to estimate a gradient for one parameter update step.

19
New cards

Epoch

One complete pass through the entire training dataset.

20
New cards

Adam

An adaptive optimization algorithm that tracks an exponential average of gradients mtm_t and squared gradients sts_t to adjust parameter updates individually.

21
New cards

AdamW

An optimization algorithm variant that decouples weight decay from Adam's adaptive gradient calculation.

22
New cards

Data Leakage

A flaw occurring when training or model selection utilizes information that will be unavailable in the intended deployment prediction setting.

23
New cards

Underfitting

A condition where a model fails to capture useful patterns in the data, producing high training and validation error.

24
New cards

Overfitting

A condition where a model fits training-specific details that fail to transfer to new data, resulting in low training error but significantly worse held-out error.

25
New cards

Patience

In early stopping, the specified number of evaluations allowed without validation improvement before training is halted.

26
New cards

Inverted Dropout

A regularization layer where activations are multiplied by a random keep mask rBernoulli(1q)r \thicksim \text{Bernoulli}(1-q) and scaled by 11q\frac{1}{1-q} during training, and left unmasked during evaluation.

27
New cards

Precision

A classification metric defined as Precision=TPTP+FP\text{Precision} = \frac{\text{TP}}{\text{TP} + \text{FP}}, measuring the fraction of positive predictions that are correct.

28
New cards

Recall

A classification metric defined as Recall=TPTP+FN\text{Recall} = \frac{\text{TP}}{\text{TP} + \text{FN}}, measuring the fraction of actual positive cases successfully identified.

29
New cards

F1 Score

A performance metric calculated as F1=2×TP2×TP+FP+FNF1 = \frac{2 \times \text{TP}}{2 \times \text{TP} + \text{FP} + \text{FN}}, balancing precision and recall via their harmonic mean.

30
New cards

Calibration

The property assessing whether predicted probabilities correspond to real observed event frequencies in the target dataset.