Metadata-Version: 2.1
Name: Perceptron-pypi-SourabhSomdeve
Version: 0.0.1
Summary: An Implementation of one Neuron Perceptron
Home-page: https://github.com/SourabhSomdeve/Perceptron_pypi
Author: SourabhSomdeve
Author-email: sourabhsomdeve09@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/SourabhSomdeve/Perceptron_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

# Perceptron_pypi
OneNeuron | Perceptron package

# How to use it

```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)

```

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

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

