Metadata-Version: 2.1
Name: Perceptron-Dhruvraj
Version: 0.0.2
Summary: Implementation of perceptron
Home-page: https://github.com/lathiyadhruvraj/perceptron_pypi
Author: Dhruvraj
Author-email: lathiyadhruvraj44@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/lathiyadhruvraj/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
perceptron_pypi


## How to use it

```python
from oneNeuron.perceptron import Perceptron

X, y = prepare_data(df)

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

