Metadata-Version: 2.1
Name: open-nn-python
Version: 0.3.1
Summary: A Neural Network implementation from scratch in Python
Home-page: https://github.com/NotShrirang/OpenNN
Author: Shrirang Mahajan
Author-email: shrirangmahajan123@gmail.com
Project-URL: Bug Tracker, https://github.com/NotShrirang/OpenNN/issues
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
License-File: LICENSE

<div align="center">
  <img src="https://user-images.githubusercontent.com/85283622/206227131-e25b01d8-4c35-4770-a4e9-728655766858.png"></a>
</div>

# OpenNN
A Neural Network implementation from scratch in Python.
In this repository, Artificial Neural Networks are implemented from scratch. From scratch meaning without using external machine learning libraries. The API structure is similar to the Tensorflow Keras API.

[![PyPI Latest Release](https://img.shields.io/pypi/v/open-nn-python.svg?style=flat&logo=pypi)](https://pypi.org/project/open-nn-python/)
[![v0.3.1](https://img.shields.io/badge/version-v0.3.1-red.svg?style=flat&logo=numpy)](https://github.com/NotShrirang/OpenNN)
[![License: MIT](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat&logo=license)](https://github.com/NotShrirang/OpenNN/blob/main/LICENSE)
[![Language: Python](https://img.shields.io/badge/language-python-blue.svg?style=flat&logo=python)](https://www.python.org/)

## Installing OpenNN from PyPI :

```sh
pip install open-nn-python
```

## Importing OpenNN:

```sh
import nn
```
