Update README.md
Browse files
README.md
CHANGED
@@ -1,72 +1,32 @@
|
|
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 |
-
β βββ micrograd-functionality.md
|
33 |
-
β βββ multi-layer-perceptron.md
|
34 |
-
β βββ neurons-explanation.md
|
35 |
-
β βββ pytorch-comparision.md
|
36 |
-
β βββ value-object-creation.md
|
37 |
-
βββ site/
|
38 |
-
β βββ interactive_site_pilot_v1.2/
|
39 |
-
βββ 1-derivative-simple-function.ipynb
|
40 |
-
βββ 2-derivative-function-with-multiple-inputs.ipynb
|
41 |
-
βββ 3-value-object.ipynb
|
42 |
-
βββ 3_1-graph-visualisation.ipynb
|
43 |
-
βββ 4_0-manual-backpropagation_simpleExpression.ipynb
|
44 |
-
βββ ... (more implementation notebooks, there are a lot lol)
|
45 |
-
```
|
46 |
-
|
47 |
-
- **Notes Directory**: Contains Markdown files with notes and explanations for each topic.
|
48 |
-
- **Interactive Site Directory**: Contains files for the pilot version of the interactive visualization tool.
|
49 |
-
- **Implementation Notebooks**: Step-by-step code for implementing and understanding backpropagation and related concepts.
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
### **πInstructions**
|
54 |
-
|
55 |
-
1. Start by reading the notes in the `notes/` directory for a theoretical understanding.
|
56 |
-
2. Proceed with the notebooks in the root directory in order to build up the implementation step by step.
|
57 |
-
3. Explore the `site/` directory for the pilot interactive version of the AutoGrad Engine visualization (Idea concept, not yet implemented)
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
### **βDocumentation**
|
62 |
-
|
63 |
-
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/Micrograd/)**.
|
64 |
-
|
65 |
-
> **π‘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.
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
### **βπ»Acknowledgments**
|
70 |
-
Notes and implementations inspired by the **Micrograd** video by [Andrej Karpathy](https://karpathy.ai/).
|
71 |
-
|
72 |
For more of my projects, visit my [Portfolio Site](https://muhammedshah.com).
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets: []
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
model_name: Micrograd AutoGrad Engine
|
7 |
+
library_name: pytorch
|
8 |
+
tags:
|
9 |
+
- micrograd
|
10 |
+
- autograd
|
11 |
+
- backpropagation
|
12 |
+
- neural-networks
|
13 |
+
- andrej-karpathy
|
14 |
+
---
|
15 |
+
|
16 |
+
# Micrograd AutoGrad Engine: Backpropagation Implementation
|
17 |
+
|
18 |
+
This repository contains the implementation of **Backpropagation** using an **AutoGrad Engine**, inspired by the **Micrograd** video by Andrej Karpathy. It explores the foundations of training neural networks and implementing key operations from scratch.
|
19 |
+
|
20 |
+
## Overview
|
21 |
+
- **Manual Backpropagation**: Building intuition and understanding of the gradient calculation process.
|
22 |
+
- **Implementation Notebooks**: Step-by-step code for implementing and understanding backpropagation and related concepts.
|
23 |
+
|
24 |
+
## Documentation
|
25 |
+
For a better reading experience and detailed notes, visit my **[Road to GPT Documentation Site](https://muzzammilshah.github.io/Road-to-GPT/Micrograd/)**.
|
26 |
+
|
27 |
+
> **π‘ 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.
|
28 |
+
|
29 |
+
## Acknowledgments
|
30 |
+
Notes and implementations inspired by the **Micrograd** video by [Andrej Karpathy](https://karpathy.ai/).
|
31 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
For more of my projects, visit my [Portfolio Site](https://muhammedshah.com).
|