:straight_ruler:Different loss functions have different properties and are suited for different scenarios in machine learning.
:construction_worker:Squared loss is commonly used for regression but is sensitive to outliers, while absolute difference loss treats outliers like any other data point.
:balance_scale:Pseudo Huber loss is a compromise between squared loss and absolute difference loss, reducing the effects of outliers on the model.
:rain_cloud:Cross-entropy loss is often used for classification and measures the discrepancy between predicted probabilities and ground truth.
:arrow_up_down:Hinge loss is commonly used in support vector machines for classification and aims to maximize the minimum margin from the data points.