micrograd
There are 71 repositories under micrograd topic.
automata/mojograd
Implementation of Karpathy's micrograd in Mojo :fire:
chizkidd/Karpathy-Neural-Networks-Zero-to-Hero
Detailed python notes & code for lectures and exercises of Andrej Karpathy's course "Neural Networks: Zero to Hero." The course is focused on building neural networks from scratch.
Anri-Lombard/micrograd
Building Andrej Kapathy's micrograd from scratch
noway/yagrad
yet another scalar autograd engine - featuring complex numbers and fixed DAG
elinx/ugrad
A C++ implementation of the scalar-valued autograd engine micrograd
ckaraneen/micrograduate
📖 A self-contained course to learn the basics of neural networks: from backprop to GPT! 🌻
LazaroHurtado/micrograd-rs
Micrograd but in Rust
MilanSuk/cmicrograd
C implementation of micrograd
msminhas93/ferric-micrograd
A rust implementation of Andrej Karpathy's Micrograd
SauravP97/micrograd-java
A Deep Neural network from scratch in Java
fszewczyk/shkyera-grad
micrograd, but in C++ and better
marfvr/micrograd-js
A porting of Karpathy's Micrograd to JS
tekknolagi/micrograd
A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API
Habrador/MicrogradCSharp
The easiest way to make Neural Networks in C# within Unity. The open-source AI project implements a tiny scalar-valued automatic differentiation (autograd) engine and a Neural Network library. You can use it outside of Unity as well.
shettysach/ferrograd
Small scalar autograd engine, inspired from Karpathy's micrograd, with some additional features, such as more activation functions, optimizers and loss criterions.
Graph2133/micrograd-example-csharp
A port of karpathy/micrograd from Python to C#. The project itself is a tiny scalar-valued autograd engine and basic neural network implementation on top of it.
mattzcarey/micrograd.zig
small (and partial) autograd engine inspired from Karpathy's micrograd and PyTorch, written in Zig
nguyenphuminh/catniff
A small Torch-like deep learning framework for Javascript
paulopacitti/undergrad
🎓 super small and cute neural net engine, using only numpy
RISHIT7/ML-Material
Repository related to machine learning projects and related modules
tanaydesai/atomgrad
A simple vector valued autograd engine aimed to be between micrograd and tinygrad with a nn library.
deniztemur00/simplegrad
Simple auto gradient project that supports basic operations written in C++ from scratch.
farrelmahaztra/micrograd-go
Implementation of Andrej Karpathy's micrograd in Go
pedrogleta/microgradts
A tiny Autograd engine based off of Andrej Karpathy's micrograd in Python
reinterpretcat/mikrograd
A toy neural networks library with zero* dependencies
2BAD/micrograd
A TypeScript implementation of an autograd engine for educational purposes.
ali-ramadhan/Micrograd.jl
A Julia implementation of micrograd.
MichaelRinger/micrograd-php
Micrograd implementation in PHP.
neluca/regrad
A small, elegant and visulized implementation of reverse mode autograd that is distinct from Karpathy's micrograd. Zero dependency.
raisultan/nanograd
Nano autograd engine and a basic neural net library with PyTorch-like feel
SermetPekin/microgradCpp
MicrogradCPP: A tiny micrograd, inspired by Karpathy's original, but this time in C++.
cllns/micrograd-rb
An implementation of micrograd in Ruby
Muawiya-contact/-micrograd-mini
# The is a micrograd-mini. Inspired by Andrej Karpathy.
SermetPekin/micrograd
A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API
tatavishnurao/Neuralnets_micrograd
Just posting my learning about Neural Networks
VisvaV/Micrograd-MLP---Tiny-Neural-Network-from-Scratch-using-Autograd
This repository is a clean, educational reimplementation of Andrej Karpathy's micrograd project. It includes: - A minimal autograd engine (`Value` class) built from scratch - Neuron, Layer, and MLP abstractions built directly on top of `Value` - Manual training loop using scalar-based backpropagation along with Visualization