Thursday, June 6, 2019

Common used loss functions in Data Science

Loss Functions
  • A function that evaluates the goodness of our models
  • Mainly evaluates the difference between:  (Act - Pred) by assigning some kind of function
  • Many are already implemented in python's ML library sklearn (EG: RMSE, binary/cross entropy loss etc


For Regression

  •  = Target value for  example
  •  = Predicted value for  example

For Classification

  •  = Target value for  example
  •  = Predicted value for  example

ROC, AUC 
    Precision and Recall







    No comments:

    Post a Comment

    Image noise comparison methods

     1. using reference image technique     - peak_signal_noise_ratio (PSNR)     - SSI 2. non-reference image technique     - BRISQUE python pac...