from minion.core import Value
from minion.utils import draw_dot
minion
Micrograd replication with nbdev
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:
= Value(2.0, label="a")
a = Value(-3.0, label="b")
b = Value(10.0, label="c")
c
= a*b+c; d.label = "d"
d d
Value(d|data=4.0)
draw_dot(d)