nn6

nn6 -- Neural Network 6


License
MIT
Install
pip install nn6==0.0.4

Documentation

nn6 -- Neural Network 6

Install

$ pip install nn6

Example

import nn6

def f(p):
	[x,y] = p
	return x*x + y*y

p = [1.0, 3.0]
nn6.gd(f, p)