Initializing Weights for Deep Learning Models - MachineLearningMastery.com

In order to build a classifier that accurately classifies the data samples and performs well on test data, you need to initialize the weights in a way that the model converges well. Usually we rand...

By · · 1 min read
Initializing Weights for Deep Learning Models - MachineLearningMastery.com

Source: MachineLearningMastery.com

In order to build a classifier that accurately classifies the data samples and performs well on test data, you need to initialize the weights in a way that the model converges well. Usually we randomized the weights. But when we use mean square error (MSE) as loss for training a logistic regression model, we may […]