{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "Score and Predict Large Datasets\n", "================================" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Sometimes you'll train on a smaller dataset that fits in memory, but need to predict or score for a much larger (possibly larger than memory) dataset.\n", "Perhaps your [learning curve](http://scikit-learn.org/stable/modules/learning_curve.html) has leveled off, or you only have labels for a subset of the data.\n", "\n", "In this situation, you can use [ParallelPostFit](http://ml.dask.org/modules/generated/dask_ml.wrappers.ParallelPostFit.html) to parallelize and distribute the scoring or prediction steps." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from dask.distributed import Client, progress\n", "\n", "# Scale up: connect to your own cluster with more resources\n", "# see http://dask.pydata.org/en/latest/setup.html\n", "client = Client(processes=False, threads_per_worker=4,\n", " n_workers=1, memory_limit='2GB')\n", "client" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import dask.array as da\n", "from sklearn.datasets import make_classification" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll generate a small random dataset with scikit-learn." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "X_train, y_train = make_classification(\n", " n_features=2, n_redundant=0, n_informative=2,\n", " random_state=1, n_clusters_per_class=1, n_samples=1000)\n", "X_train[:5]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we'll clone that dataset many times with `dask.array`. `X_large` and `y_large` represent our larger than memory dataset." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Scale up: increase N, the number of times we replicate the data.\n", "N = 100\n", "X_large = da.concatenate([da.from_array(X_train, chunks=X_train.shape)\n", " for _ in range(N)])\n", "y_large = da.concatenate([da.from_array(y_train, chunks=y_train.shape)\n", " for _ in range(N)])\n", "X_large" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Since our training dataset fits in memory, we can use a scikit-learn estimator as the actual estimator fit during traning.\n", "But we know that we'll want to predict for a large dataset, so we'll wrap the scikit-learn estimator with `ParallelPostFit`." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from sklearn.linear_model import LogisticRegressionCV\n", "from dask_ml.wrappers import ParallelPostFit" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "clf = ParallelPostFit(LogisticRegressionCV(cv=3), scoring=\"r2\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "See the note in the `dask-ml`'s documentation about when and why a `scoring` parameter is needed: https://ml.dask.org/modules/generated/dask_ml.wrappers.ParallelPostFit.html#dask_ml.wrappers.ParallelPostFit." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we'll call `clf.fit`. Dask-ML does nothing here, so this step can only use datasets that fit in memory." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "clf.fit(X_train, y_train)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now that training is done, we'll turn to predicting for the full (larger than memory) dataset." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "y_pred = clf.predict(X_large)\n", "y_pred" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`y_pred` is a Dask array.\n", "Workers can write the predicted values to a shared file system, without ever having to collect the data on a single machine.\n", "\n", "Or we can check the models score on the entire large dataset.\n", "The computation will be done in parallel, and no single machine will have to hold all the data." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "clf.score(X_large, y_large)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.6" } }, "nbformat": 4, "nbformat_minor": 4 }