AI Fundamentals Exercises
Fill in the blanks to test your knowledge.
Name the process of training a model on labeled data
// Learning from labeled examples
// Called learning
Identify the metric used to measure model error during training
// The function we minimize during training
// Called the function
Name the algorithm used to update neural network weights
// Computes gradients layer by layer
// Called
Identify the layer type that extracts local features from images
// Used in CNNs for image feature extraction
// Called a layer
Name the technique to prevent overfitting by randomly zeroing neurons
// Randomly disables neurons during training
// Called
Name the optimizer that adapts learning rates per parameter
// Adaptive learning rate optimizer
optimizer = (lr=0.001)
Identify the type of ML where an agent learns from rewards
// Agent learns through trial and error with rewards
// Called learning
Name the common activation function that outputs between 0 and 1
// Maps any value to (0, 1)
// Called the function