Metadata-Version: 2.1
Name: ai6
Version: 1.1.0
Summary: ai6 -- Artificial Intelligence Example Code
Home-page: https://github.com/ccc-py/nn6
Author: ccckmit
Author-email: ccckmit@gmail.com
License: UNKNOWN
Description: # nn6 -- Neural Network 6
        
        ## Install
        
        ```
        $ pip install nn6
        ```
        
        ## Example
        
        ```py
        import ai6
        
        def f(p):
        	[x,y] = p
        	return x*x + y*y
        
        p = [1.0, 3.0]
        ai6.gd(f, p)
        ```
        
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
