Regression - Machine Learning
2024-05-27
Table of Contents

Tags
  • select a class of models and loss function
  • fit a model to training data
  • use a model to predict data that is not in training set

Class of functions Y=f(X,θ)Y=f(X,\theta)

  • XX input data
  • θ\theta parameters

A loss function l(Y,Y^)l(Y,\hat{Y})

  • Y known output values form data
  • Y^\hat{Y} estimated output value using ff

empirical risk: an average of the loss on such dataset (training dataset)

ERM: minimizing empirical risk is good if we want to minimize loss on data not used in training

© 2024 Belgutei. All rights reserved