Jkoles28 / CS373

0 stars 0 forks source link

Loss Functions #12

Open Jkoles28 opened 1 year ago

Jkoles28 commented 1 year ago

Title

Loss Functions and Their Use In Neural Networks

URL

https://towardsdatascience.com/loss-functions-and-their-use-in-neural-networks-a470e703f1e9

Summary

Loss functions are used to measure the performance of a neural network and are used in backpropagation to update the model’s hyperparameters. Different types of loss functions include mean squared error (MSE), cross-entropy, and hinge loss. Custom loss functions can be implemented for image and video data processing.

Key Points

A loss function is a function that compares the target and predicted output values; measures how well the neural network models the training data. When training, we aim to minimize this loss between the predicted and target outputs. The hyperparameters are adjusted to minimize the average loss — we find the weights, wT, and biases, b, that minimize the value of J (average loss). image

Citation

Repo link

Jkoles28 commented 1 year ago

image