Metadata-Version: 2.1
Name: oneNeuron-umangtank
Version: 0.0.2
Summary: It's an Implimentation of Perceptron
Home-page: https://github.com/umangtank/oneNeuron
Author: umangtank
Author-email: umangtank08@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/umangtank/oneNeuron
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# oneNeuron_pypi

**what is pypi?**

- The Python Package Index (PyPI) is a repository of software for the Python programming language.

It's use for publishing any python package.

# How to use-
* install the latest package 

> * in jupyter notebook -
```
    !pip install oneNeuron-umangtank
```
> * in command prompt -
```bash    
    pip install oneNeuron-umangtank
```
* Now run below snippets of code in your jupyter-notebooks cell to perform perceptron.

```python
from oneNeuron.Perceptron import Perceptron

## get X and y and then use below commands

# eta = learning rate
model = Perceptron(eta=eta, epochs=epochs)
model.fit(X, y)
```

#### pypi
[oneNeuron-umangtank](https://pypi.org/project/oneNeuron-umangtank/)

#### Author
[Umang Tank](https://www.linkedin.com/in/umangtank/)

