Compare commits

...

5 commits

Author SHA1 Message Date
Gargaj
e4ce3bf147
Merge 650ab5a8dc into 264b4547b3 2026-06-29 10:41:51 +01:00
Paul Kuruvilla
264b4547b3
Merge pull request #1812 from roiamiel1/add-build-deep-learning-from-scratch
add Build Your Own PyTorch
2026-06-25 20:11:09 +05:30
RoiAmiel
750f70669b
Update link for 'Build Deep Learning From Scratch' 2026-06-23 22:14:39 +03:00
Roi Amiel
1b3cb7479d add build add-build-deep-learning-from-scratch 2026-06-21 21:00:09 +03:00
Gargaj
650ab5a8dc
add demo tutorial 2025-04-09 12:52:44 +02:00

View file

@ -16,6 +16,7 @@ It's a great way to learn.
* [Bot](#build-your-own-bot) * [Bot](#build-your-own-bot)
* [Command-Line Tool](#build-your-own-command-line-tool) * [Command-Line Tool](#build-your-own-command-line-tool)
* [Database](#build-your-own-database) * [Database](#build-your-own-database)
* [Demo](#build-your-own-demo)
* [Docker](#build-your-own-docker) * [Docker](#build-your-own-docker)
* [Emulator / Virtual Machine](#build-your-own-emulator--virtual-machine) * [Emulator / Virtual Machine](#build-your-own-emulator--virtual-machine)
* [Front-end Framework / Library](#build-your-own-front-end-framework--library) * [Front-end Framework / Library](#build-your-own-front-end-framework--library)
@ -161,6 +162,10 @@ It's a great way to learn.
* [**Python**: _A proof-of-concept imitation of Docker, written in 100% Python_](https://github.com/tonybaloney/mocker) * [**Python**: _A proof-of-concept imitation of Docker, written in 100% Python_](https://github.com/tonybaloney/mocker)
* [**Shell**: _Docker implemented in around 100 lines of bash_](https://github.com/p8952/bocker) * [**Shell**: _Docker implemented in around 100 lines of bash_](https://github.com/p8952/bocker)
#### Build your own `Demo`
* [**C++**: _How to start writing an actual demo in <400 lines_](https://gargaj.github.io/demos-for-dummies/)
#### Build your own `Emulator / Virtual Machine` #### Build your own `Emulator / Virtual Machine`
* [**C**: _Home-grown bytecode interpreters_](https://medium.com/bumble-tech/home-grown-bytecode-interpreters-51e12d59b25c) * [**C**: _Home-grown bytecode interpreters_](https://medium.com/bumble-tech/home-grown-bytecode-interpreters-51e12d59b25c)
@ -264,6 +269,7 @@ It's a great way to learn.
* [**JavaScript / Java**: _Neural Networks - The Nature of Code_](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6aCibgK1PTWWu9by6XFdCfh) [video] * [**JavaScript / Java**: _Neural Networks - The Nature of Code_](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6aCibgK1PTWWu9by6XFdCfh) [video]
* [**JavaScript**: _Neural networks from scratch for JavaScript linguists (Part1The Perceptron)_](https://hackernoon.com/neural-networks-from-scratch-for-javascript-linguists-part1-the-perceptron-632a4d1fbad2) * [**JavaScript**: _Neural networks from scratch for JavaScript linguists (Part1The Perceptron)_](https://hackernoon.com/neural-networks-from-scratch-for-javascript-linguists-part1-the-perceptron-632a4d1fbad2)
* [**Python**: _A Neural Network in 11 lines of Python_](https://iamtrask.github.io/2015/07/12/basic-python-network/) * [**Python**: _A Neural Network in 11 lines of Python_](https://iamtrask.github.io/2015/07/12/basic-python-network/)
* [**Python**: _Build Deep Learning From Scratch (reimplement PyTorch internals across 34 stages)_](https://github.com/roiamiel1/Build-Deep-Learning-From-Scratch)
* [**Python**: _Implement a Neural Network from Scratch_](https://victorzhou.com/blog/intro-to-neural-networks/) * [**Python**: _Implement a Neural Network from Scratch_](https://victorzhou.com/blog/intro-to-neural-networks/)
* [**Python**: _Optical Character Recognition (OCR)_](http://aosabook.org/en/500L/optical-character-recognition-ocr.html) * [**Python**: _Optical Character Recognition (OCR)_](http://aosabook.org/en/500L/optical-character-recognition-ocr.html)
* [**Python**: _Traffic signs classification with a convolutional network_](https://navoshta.com/traffic-signs-classification/) * [**Python**: _Traffic signs classification with a convolutional network_](https://navoshta.com/traffic-signs-classification/)