From 36c475a060559adf509f9eaf513a7a14cf415095 Mon Sep 17 00:00:00 2001 From: johan/n <85245989+aethnae@users.noreply.github.com> Date: Wed, 15 Jan 2025 22:13:50 +0100 Subject: [PATCH] Update engine.py fixed typo in backward function. --- micrograd/engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micrograd/engine.py b/micrograd/engine.py index afd82cc5..c087a0d1 100644 --- a/micrograd/engine.py +++ b/micrograd/engine.py @@ -53,7 +53,7 @@ def _backward(): def backward(self): - # topological order all of the children in the graph + # topologically order all of the children in the graph topo = [] visited = set() def build_topo(v):