from minion.core import Value
from minion.utils import draw_dotminion
Micrograd replication with nbdev
This file will become your README and also the index of your documentation.
Install
pip install minionHow to use
Fill me in please! Don’t forget code examples:
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"
dValue(d|data=4.0)
draw_dot(d)