scikit-learn
A very short introduction into machine learning problems and how to solve them using scikit-learn. Presents basic concepts and conventions.
Build steps
Scikit-learn can be built directly from source for the time being (until Binary releases are made available)
Scikit-Learn Manual Build Steps from source:
Download Source from https://github.com/scikit-learn/scikit-learn
python -m venv sklearn-dev-env
sklearn-dev-env\Scripts\activate
pip install -U pip
pip install wheel numpy cython meson-python ninja
pip install --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy
pip install --editable . --no-build-isolation --verbose --config-settings editable-verbose=true
Binary Availablilty
SciPy wheel should be available in PyPI, soon.