AI Terminology Course
AI Terminology
/
Advanced

Hyperparameters

Definition

The overarching, high-level configuration settings for a machine learning algorithm that are set manually by the data scientist BEFORE the training process begins. They control HOW the model learns.

Explain Like I'm New

The dials and knobs on the oven. You don't put the knobs in the cake. You set the temperature and the timer before you start baking. If you set the temperature too high (bad hyperparameter), the cake burns.

Real World Example

Deciding exactly how many 'hidden layers' to put in a neural network, or deciding the 'Learning Rate' (how fast the AI changes its mind when it makes a mistake).

Common Use Cases

  • •Model tuning
  • •AI engineering

Interview Questions

basic

  • Are hyperparameters learned automatically by the AI during training?

intermediate

  • What is 'Hyperparameter Tuning' (or Grid Search)?

Flash Cards

Question

Learned automatically?

Click to reveal answer
Answer

No! Parameters (like internal weights) are learned automatically. HYPERparameters are set manually by humans before the process starts.

Question

What is tuning?

Click to reveal answer
Answer

The incredibly tedious process where a data scientist trains the exact same model 50 different times, slightly tweaking the hyperparameters each time, to figure out which combination produces the smartest AI.