BenjaminB/plain-sklearn
121
1---2license: bsd-3-clause3tags:4- sklearn5datasets:6- synthetic dataset from sklearn7metrics:8- type: accuracy9 value: 0.94810---11 12# Simple example using plain scikit-learn13 14## Reproducing the model15 16Inside a Python environment, install the dependencies listed in `requirements.txt` and then run:17 18``` bash19python train.py20```21 22The resulting model artifact should be stored in `model.pickle`.23 24## The model25 26The used model is a simple logistic regression trained through gradient descent.27 28## Intended use & limitations29 30This model is just for demonstration purposes and should thus not be used.31 32## Dataset33 34The dataset is entirely synthetic and has no real world origin.35 