An open API service indexing awesome lists of open source software.

https://github.com/mohammedsaqibms/initialization

This repository explores the impact of various weight initialization methods on a neural network's performance, comparing zero, random, and He initialization. It includes visualizations of cost function and decision boundaries.
https://github.com/mohammedsaqibms/initialization

ai deep-learning he-initialization machine-learning neural-networks weight-initialization

Last synced: about 1 year ago
JSON representation

This repository explores the impact of various weight initialization methods on a neural network's performance, comparing zero, random, and He initialization. It includes visualizations of cost function and decision boundaries.

Awesome Lists containing this project

README

          

# Neural Network Initialization and Training 🧠🚀

Welcome to the Neural Network Initialization and Training project! This project demonstrates the importance of initialization methods when training deep learning models. It showcases how different initialization strategies affect the model's learning and performance. We'll cover three key initialization methods:

- **Zero Initialization** ➡️ All weights set to zero.
- **Random Initialization** ➡️ Weights are randomly initialized.
- **He Initialization** ➡️ Weights are initialized using He et al.'s method, suitable for ReLU activations.

## 🙏 Credits

This project is based on concepts and methodologies taught in the [Deep Learning Specialization](https://www.deeplearning.ai/courses/deep-learning-specialization/) by **Andrew Ng** and **DeepLearning.AI**.