Metadata-Version: 2.1
Name: ai6
Version: 1.2.1
Summary: ai6 -- Artificial Intelligence Example Code
Home-page: https://github.com/ccc-py/nn6
Author: ccckmit
Author-email: ccckmit@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# ai6 -- Artificial Intelligence Code Examples

## Install

```
$ pip install ai6
```

## Example

```py
import ai6

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

p = [1.0, 3.0]
ai6.gradient_descendent(f, p)
```


