Metadata-Version: 2.1
Name: oneNeuron_pypi-saquibquddus
Version: 0.0.5
Summary: It's a implementation of Perceptron and all_utils
Home-page: https://github.com/saquibquddus/oneNeuron_pypi
Author: saquibquddus
Author-email: sakibquddus@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/saquibquddus/oneNeuron_pypi/issues
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
oneNeuron_pypi

## Reference -
[Python package docs](https://packaging.python.org/tutorials/packaging-projects/)

[Github doc for gihub actions](https://docs.github.com/en/actions/guides/building-and-testing-python#publishing-to-package-registries)

## How to use
```python
from oneNeuron.perceptron import Perceptron

## get X and y and then use below commands
model = Perceptron(eta=eta, epochs=epochs)
model.fit(X, y)
```



