{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Generalized Linear Models\n", "\n", "This notebook introduces the algorithms within [Dask-GLM](https://github.com/dask/dask-glm) for [Generalized Linear Models](https://en.wikipedia.org/wiki/Generalized_linear_model)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Start Dask Client for Dashboard\n", "\n", "Starting the Dask Client is optional. It will provide a dashboard which \n", "is useful to gain insight on the computation. \n", "\n", "The link to the dashboard will become visible when you create the client below. We recommend having it open on one side of your screen while using your notebook on the other side. This can take some effort to arrange your windows, but seeing them both at the same is very useful when learning." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from dask.distributed import Client, progress\n", "client = Client(processes=False, threads_per_worker=4,\n", " n_workers=1, memory_limit='2GB')\n", "client" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Make a random dataset" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from dask_glm.datasets import make_regression\n", "X, y = make_regression(n_samples=200000, n_features=100, n_informative=5, chunksize=10000)\n", "X" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import dask\n", "X, y = dask.persist(X, y)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Solve with a GLM algorithm\n", "\n", "*We also recommend looking at the \"Graph\" dashboard during execution if available*" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import dask_glm.algorithms\n", "\n", "b = dask_glm.algorithms.admm(X, y, max_iter=5)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Solve with a difference GLM algorithm" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "b = dask_glm.algorithms.proximal_grad(X, y, max_iter=5)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Customizable with different families and regularizers\n", "\n", "The Dask-GLM project is nicely modular, allowing for different GLM families and regularizers, including a relatively straightforward interface for implementing custom ones." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import dask_glm.families\n", "import dask_glm.regularizers\n", "\n", "family = dask_glm.families.Poisson()\n", "regularizer = dask_glm.regularizers.ElasticNet()\n", "\n", "b = dask_glm.algorithms.proximal_grad(\n", " X, y, \n", " max_iter=5, \n", " family=family,\n", " regularizer=regularizer,\n", ")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dask_glm.families.Poisson??" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dask_glm.regularizers.ElasticNet??" ] } ], "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 }