YAML Metadata Error:"datasets[0]" with value "synthetic dataset from sklearn" is not valid. If possible, use a dataset id from https://hf.co/datasets.
Simple example using plain scikit-learn
Reproducing the model
Inside a Python environment, install the dependencies listed in requirements.txt and then run:
python train.py
The resulting model artifact should be stored in model.pickle.
The model
The used model is a simple logistic regression trained through gradient descent.
Intended use & limitations
This model is just for demonstration purposes and should thus not be used.
Dataset
The dataset is entirely synthetic and has no real world origin.
- Downloads last month
- 62
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("BenjaminB/plain-sklearn", "sklearn_model.joblib") ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html