Metadata-Version: 2.1
Name: oneNeuron_pypi-DhyeySherasia
Version: 0.0.2
Summary: An implementation of Perceptron in Python
Home-page: https://github.com/DhyeySherasia/oneNeuron_pypi
Author: DhyeySherasia
Author-email: dhyeysherasia2002@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/DhyeySherasia/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

## How to use:
```python
from oneNeuron_pypi.perceptron import Perceptron

# Get X and y first and then use below mentioned commands
model = Perceptron(eta=ETA, epochs=EPOCHS)
model.fit(X, y)

```

## References

[Official python docs](https://packaging.python.org/tutorials/packaging-projects)

[Other references](https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries)


