{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "Automate Machine Learning with TPOT\n", "===================================\n", "\n", "This example shows how [TPOT](https://epistasislab.github.io/tpot/) can be used with Dask.\n", "\n", "TPOT is an [automated machine learning](https://en.wikipedia.org/wiki/Automated_machine_learning) library.\n", "It evaluates many scikit-learn pipelines and hyperparameter combinations to find a model that works well for your data. Evaluating all these computations is computationally expensive, but ammenable to parallelism. TPOT can use Dask to distribute these computations on a cluster of machines.\n", "\n", "This notebook can be run interactively on the [dask examples binder](https://github.com/dask/dask-examples).\n", "The following video shows a larger version of this notebook on a cluster." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from IPython.display import YouTubeVideo\n", "\n", "YouTubeVideo(\"uyx9nBuOYQQ\")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import tpot\n", "from tpot import TPOTClassifier\n", "from sklearn.datasets import load_digits\n", "from sklearn.model_selection import train_test_split" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Setup Dask\n", "\n", "We first start a Dask client in order to get access to the Dask dashboard, which will provide progress and performance metrics. \n", "\n", "You can view the dashboard by clicking on the dashboard link after you run the cell." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from dask.distributed import Client\n", "client = Client(n_workers=4, threads_per_worker=1)\n", "client" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Create Data\n", "\n", "We'll use the digits dataset.\n", "To ensure the example runs quickly, we'll make the training dataset relatively small." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "digits = load_digits()\n", "\n", "X_train, X_test, y_train, y_test = train_test_split(\n", " digits.data,\n", " digits.target,\n", " train_size=0.05,\n", " test_size=0.95,\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "These are just small, in-memory NumPy arrays. This example is not applicable to larger-than-memory Dask arrays." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Using Dask\n", "\n", "TPOT follows the scikit-learn API; we specify a `TPOTClassifier` with a few hyperparameters, and then fit it on some data.\n", "By default, TPOT trains on your single machine.\n", "To ensure your cluster is used, specify the `use_dask` keyword." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# scale up: Increase the TPOT parameters like population_size, generations\n", "tp = TPOTClassifier(\n", " generations=2,\n", " population_size=10,\n", " cv=2,\n", " n_jobs=-1,\n", " random_state=0,\n", " verbosity=0,\n", " config_dict=tpot.config.classifier_config_dict_light,\n", " use_dask=True,\n", ")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "tp.fit(X_train, y_train)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Learn More\n", "\n", "See the [Dask-ML](http://ml.dask.org/) and [TPOT](https://epistasislab.github.io/tpot/) documenation for more information on using Dask and TPOT." ] } ], "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.9.12" } }, "nbformat": 4, "nbformat_minor": 4 }