Update README.md
Browse files
README.md
CHANGED
@@ -1,61 +1,29 @@
|
|
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 |
-
│ └── README.md
|
30 |
-
└── names.txt
|
31 |
-
```
|
32 |
-
|
33 |
-
- **Notes Directory**: Contains detailed notes corresponding to each notebook section.
|
34 |
-
- **Jupyter Notebooks**: Step-by-step implementation and exploration of the MLP model.
|
35 |
-
- **README.md**: Overview and guide for this repository.
|
36 |
-
- **names.txt**: Supplementary data file used in training the model.
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
### **📄Instructions**
|
41 |
-
|
42 |
-
To get the best understanding:
|
43 |
-
|
44 |
-
1. Start by reading the notes in the `notes/` directory. Each section corresponds to a notebook for step-by-step explanations.
|
45 |
-
2. Open the corresponding Jupyter Notebook (e.g., `A-Main-Notebook.ipynb` for `A-main-makemore-part2.md`).
|
46 |
-
3. Follow the code and comments for a deeper dive into the implementation details.
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
### **⭐Documentation**
|
51 |
-
|
52 |
-
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/)**.
|
53 |
-
|
54 |
-
> **💡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.
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
### **✍🏻Acknowledgments**
|
59 |
-
Notes and implementations inspired by the **Makemore - Part 2** video by [Andrej Karpathy](https://karpathy.ai/).
|
60 |
-
|
61 |
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: Multi-Layer Perceptron (MLP) Language Model
|
8 |
+
library_name: pytorch
|
9 |
+
tags:
|
10 |
+
- makemore
|
11 |
+
- mlp
|
12 |
+
- language-model
|
13 |
+
- andrej-karpathy
|
14 |
+
---
|
15 |
+
|
16 |
+
# Multi-Layer Perceptron Language Model: Makemore (Part 2)
|
17 |
+
|
18 |
+
In this repository, a **Multi-Layer Perceptron (MLP)** language model inspired by the *Bengio et al. (2003)* research paper has been implemented for **character-level predictions**, following Andrej Karpathy's approach in the **Makemore - Part 2** video.
|
19 |
+
|
20 |
+
## Overview
|
21 |
+
The implementation demonstrates building and training the MLP model for sequence prediction while further enhancing the understanding of neural network architectures for language modeling.
|
22 |
+
|
23 |
+
## Documentation
|
24 |
+
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/Makemore-part2/)**.
|
25 |
+
|
26 |
+
## Acknowledgments
|
27 |
+
Notes and implementations inspired by the **Makemore - Part 2** video by [Andrej Karpathy](https://karpathy.ai/).
|
28 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
For more of my projects, visit my [Portfolio Site](https://muhammedshah.com).
|