Subject revision

Machine Learning

Modeling, metrics, training, and ML fundamentals.

Clear

Results update as you type. Press / to jump straight into search.

Machine Learning cards

16 cards

Machine Learning Easy Theory

Classification vs regression

Classification predicts categories; regression predicts continuous numeric values.

  • Class labels vs numbers
  • Metrics differ
  • Thresholding often matters for classification

Classification vs regression

Machine Learning Medium Theory

Model monitoring basics

Model monitoring tracks data drift, prediction quality, latency, and operational health after deployment.

  • Watch for drift
  • Track business metrics too
  • Retrain only when signals justify it

Model monitoring basics

Machine Learning Easy Theory

Overfitting vs underfitting

Overfitting memorizes noise; underfitting is too simple to capture the real pattern.

  • Overfit has low train and poor test performance
  • Underfit performs poorly everywhere
  • Control with data, features, and regularization

Overfitting vs underfitting

Machine Learning Easy Theory

Precision vs recall vs F1

Precision asks how many predicted positives were right, recall asks how many real positives were found, and F1 balances both.

  • Precision avoids false positives
  • Recall avoids false negatives
  • F1 is harmonic mean

Precision vs recall vs F1