Rahuketu86 / minion

Micrograd replication with nbdev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

Micrograd replication with nbdev

License:GNU General Public License v3.0


Languages

Language:Jupyter Notebook 99.7%Language:Python 0.3%Language:CSS 0.0%