/minion

Micrograd replication with nbdev

Primary LanguageJupyter NotebookGNU General Public License v3.0GPL-3.0

minion

This file will become your README and also the index of your documentation.

Install

pip install minion

How to use

Fill me in please! Don’t forget code examples:

from minion.core import Value
from minion.utils import draw_dot
a = Value(2.0, label="a")
b = Value(-3.0, label="b")
c = Value(10.0, label="c")

d = a*b+c; d.label = "d"
d
Value(d|data=4.0)
draw_dot(d)