Update README.md
Browse files
README.md
CHANGED
@@ -1,59 +1,34 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
- **names.txt**: Supplementary data file used in training the model.
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
### **📄Instructions**
|
39 |
-
|
40 |
-
To get the best understanding:
|
41 |
-
|
42 |
-
1. Start by reading the notes in the `notes/` directory. Each section corresponds to a notebook for step-by-step explanations.
|
43 |
-
2. Open the corresponding Jupyter Notebook (e.g., `A-Main-Notebook.ipynb` for `A-main-makemore-part3.md`).
|
44 |
-
3. Follow the code and comments for a deeper dive into the implementation details.
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
### **⭐Documentation**
|
49 |
-
|
50 |
-
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/)**.
|
51 |
-
|
52 |
-
> **💡Pro Tip**: This site provides an interactive and visually rich explanation of the notes and code. It is highly recommended you view this project from there.
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
### **✍🏻Acknowledgments**
|
57 |
-
Notes and implementations inspired by the **Makemore - Part 3** video by [Andrej Karpathy](https://karpathy.ai/).
|
58 |
-
|
59 |
For more of my projects, visit my [Portfolio Site](https://muhammedshah.com).
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets:
|
4 |
+
- MuzzammilShah/people-names
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
model_name: Batch Normalization for Neural Networks
|
8 |
+
library_name: pytorch
|
9 |
+
tags:
|
10 |
+
- makemore
|
11 |
+
- batch-normalization
|
12 |
+
- neural-networks
|
13 |
+
- andrej-karpathy
|
14 |
+
---
|
15 |
+
|
16 |
+
# Batch Normalization for Neural Networks: Makemore (Part 3)
|
17 |
+
|
18 |
+
In this repository, I implemented **Batch Normalization** within a neural network framework to enhance training stability and performance, following Andrej Karpathy's approach in the **Makemore - Part 3** video.
|
19 |
+
|
20 |
+
## Overview
|
21 |
+
This implementation focuses on:
|
22 |
+
- **Normalizing activations and gradients**.
|
23 |
+
- Addressing initialization issues.
|
24 |
+
- Utilizing Kaiming initialization to prevent saturation of activation functions.
|
25 |
+
|
26 |
+
Additionally, **visualization graphs** were created at the end to analyze the effects of these techniques on the training process and model performance.
|
27 |
+
|
28 |
+
## Documentation
|
29 |
+
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/Makemore-part3/)**.
|
30 |
+
|
31 |
+
## Acknowledgments
|
32 |
+
Notes and implementations inspired by the **Makemore - Part 3** video by [Andrej Karpathy](https://karpathy.ai/).
|
33 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
For more of my projects, visit my [Portfolio Site](https://muhammedshah.com).
|