Update README.md
Browse files
README.md
CHANGED
|
@@ -1,56 +1,31 @@
|
|
| 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 |
-
- **names.txt**: Supplementary data file used in training the model.
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
### **📄Instructions**
|
| 36 |
-
|
| 37 |
-
To get the best understanding:
|
| 38 |
-
|
| 39 |
-
1. Start by reading the notes in the `notes/` directory. Each section corresponds to a notebook for step-by-step explanations.
|
| 40 |
-
2. Open the corresponding Jupyter Notebook.
|
| 41 |
-
3. Follow the code and comments for a deeper dive into the implementation details.
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
### **⭐Documentation**
|
| 46 |
-
|
| 47 |
-
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/)**.
|
| 48 |
-
|
| 49 |
-
> **💡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.
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
### **✍🏻Acknowledgments**
|
| 54 |
-
Notes and implementations inspired by the **Makemore - Part 5** video by [Andrej Karpathy](https://karpathy.ai/).
|
| 55 |
-
|
| 56 |
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: Deep MLP with WaveNet-inspired Architecture
|
| 8 |
+
library_name: pytorch
|
| 9 |
+
tags:
|
| 10 |
+
- makemore
|
| 11 |
+
- wavenet
|
| 12 |
+
- convolutional-neural-network
|
| 13 |
+
- deep-learning
|
| 14 |
+
- andrej-karpathy
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# Deep MLP with WaveNet-inspired Architecture: Makemore (Part 5)
|
| 18 |
+
|
| 19 |
+
This repository builds upon the 2-layer MLP from previous implementations, making it deeper with a tree-like structure, leading to a convolutional neural network architecture inspired by the WaveNet (2016) from DeepMind.
|
| 20 |
+
|
| 21 |
+
## Overview
|
| 22 |
+
- This hierarchical architecture is implemented efficiently using causal dilated convolutions (not yet covered).
|
| 23 |
+
- The project explores `torch.nn` and its functionality, providing insights into deep learning development processes.
|
| 24 |
+
|
| 25 |
+
## Documentation
|
| 26 |
+
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/Makemore-part5/)**.
|
| 27 |
+
|
| 28 |
+
## Acknowledgments
|
| 29 |
+
Notes and implementations inspired by the **Makemore - Part 5** video by [Andrej Karpathy](https://karpathy.ai/).
|
| 30 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
For more of my projects, visit my [Portfolio Site](https://muhammedshah.com).
|