Metadata-Version: 2.1
Name: oneNeuron-pypi-sayalasanchit
Version: 0.0.2
Summary: An implementation of Perceptron
Home-page: https://github.com/sayalasanchit/oneNeuron-pypi
Author: sayalasanchit
Author-email: sayalasanchit@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/sayalasanchit/oneNeuron-pypi/issues
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
License-File: LICENSE

# oneNeuron-pypi
PyPi package for One Neuron Repo

## original project
[Original project link](https://github.com/c17hawke/oneNeuron_pypi)

## how to install
```bash
pip intstall oneNeuron-pypi-sayalasanchit
```

## how to use
```python
from oneNeuron.perceptron import Perceptron
# get X and y (dependent and independent variables)
model=Perceptron(eta, epochs)
model.fit(X, y)
```


