An open API service indexing awesome lists of open source software.

https://github.com/rmodi6/perceptron

Perceptron learning algorithm implemented in Python
https://github.com/rmodi6/perceptron

cross-validation empirical-risk-minimization machine-learning perceptron-learning-algorithm python38

Last synced: 8 months ago
JSON representation

Perceptron learning algorithm implemented in Python

Awesome Lists containing this project

README

          

# Perceptron
# Adaptive Boosting
The path to dataset can be provided using the `dataset` parameter and `mode` parameter can be used to specify the mode in which to execute perceptron. There are two modes available: `erm` for Empirical Risk Minimization and `cv` for 10 fold Cross Validation. For example:
```bash
python perceptron.py --dataset 'path/to/dataset' --mode erm
```