{ "cells": [ { "cell_type": "raw", "id": "dbb762f7", "metadata": {}, "source": [ "Run in Google Colab" ] }, { "cell_type": "markdown", "id": "60da35da", "metadata": {}, "source": [ "# SciKeras Benchmarks\n", "\n", "SciKeras wraps Keras Models, but does not alter their performance since all of the heavy lifting still happens within Keras/Tensorflow. In this notebook, we compare the performance and accuracy of a pure-Keras Model to the same model wrapped in SciKeras.\n", "\n", "## Table of contents\n", "\n", "* [1. Setup](#1.-Setup)\n", "* [2. Dataset](#2.-Dataset)\n", "* [3. Define Keras Model](#3.-Define-Keras-Model)\n", "* [4. Keras benchmarks](#4.-Keras-benchmarks)\n", "* [5. SciKeras benchmark](#5.-SciKeras-benchmark)\n", "\n", "## 1. Setup" ] }, { "cell_type": "code", "execution_count": 1, "id": "df87e338", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:38:59.442905Z", "iopub.status.busy": "2021-08-02T15:38:59.442130Z", "iopub.status.idle": "2021-08-02T15:39:01.274172Z", "shell.execute_reply": "2021-08-02T15:39:01.274956Z" } }, "outputs": [], "source": [ "try:\n", " import scikeras\n", "except ImportError:\n", " !python -m pip install scikeras" ] }, { "cell_type": "markdown", "id": "8171202c", "metadata": {}, "source": [ "Silence TensorFlow logging to keep output succinct." ] }, { "cell_type": "code", "execution_count": 2, "id": "a8a59a41", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:01.280222Z", "iopub.status.busy": "2021-08-02T15:39:01.279720Z", "iopub.status.idle": "2021-08-02T15:39:01.283542Z", "shell.execute_reply": "2021-08-02T15:39:01.283955Z" } }, "outputs": [], "source": [ "import warnings\n", "from tensorflow import get_logger\n", "get_logger().setLevel('ERROR')\n", "warnings.filterwarnings(\"ignore\", message=\"Setting the random state for TF\")" ] }, { "cell_type": "code", "execution_count": 3, "id": "467f5c9c", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:01.286485Z", "iopub.status.busy": "2021-08-02T15:39:01.285835Z", "iopub.status.idle": "2021-08-02T15:39:01.804736Z", "shell.execute_reply": "2021-08-02T15:39:01.803732Z" } }, "outputs": [], "source": [ "import numpy as np\n", "from scikeras.wrappers import KerasClassifier, KerasRegressor\n", "from tensorflow import keras" ] }, { "cell_type": "markdown", "id": "cf31cbab", "metadata": {}, "source": [ "## 2. Dataset\n", "\n", "We will be using the MNIST dataset available within Keras." ] }, { "cell_type": "code", "execution_count": 4, "id": "64528b94", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:01.811651Z", "iopub.status.busy": "2021-08-02T15:39:01.810279Z", "iopub.status.idle": "2021-08-02T15:39:02.393752Z", "shell.execute_reply": "2021-08-02T15:39:02.394823Z" } }, "outputs": [], "source": [ "(x_train, y_train), (x_test, y_test) = keras.datasets.mnist.load_data()\n", "# Scale images to the [0, 1] range\n", "x_train = x_train.astype(\"float32\") / 255\n", "x_test = x_test.astype(\"float32\") / 255\n", "# Make sure images have shape (28, 28, 1)\n", "x_train = np.expand_dims(x_train, -1)\n", "x_test = np.expand_dims(x_test, -1)\n", "# Reduce dataset size for faster benchmarks\n", "x_train, y_train = x_train[:2000], y_train[:2000]\n", "x_test, y_test = x_test[:500], y_test[:500]" ] }, { "cell_type": "markdown", "id": "b60beef8", "metadata": {}, "source": [ "## 3. Define Keras Model\n", "\n", "Next we will define our Keras model (adapted from [keras.io](https://keras.io/examples/vision/mnist_convnet/)):" ] }, { "cell_type": "code", "execution_count": 5, "id": "3e5988ca", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:02.398688Z", "iopub.status.busy": "2021-08-02T15:39:02.397656Z", "iopub.status.idle": "2021-08-02T15:39:02.406365Z", "shell.execute_reply": "2021-08-02T15:39:02.407237Z" } }, "outputs": [], "source": [ "num_classes = 10\n", "input_shape = (28, 28, 1)\n", "\n", "\n", "def get_model():\n", " model = keras.Sequential(\n", " [\n", " keras.Input(input_shape),\n", " keras.layers.Conv2D(32, kernel_size=(3, 3), activation=\"relu\"),\n", " keras.layers.MaxPooling2D(pool_size=(2, 2)),\n", " keras.layers.Conv2D(64, kernel_size=(3, 3), activation=\"relu\"),\n", " keras.layers.MaxPooling2D(pool_size=(2, 2)),\n", " keras.layers.Flatten(),\n", " keras.layers.Dropout(0.5),\n", " keras.layers.Dense(num_classes, activation=\"softmax\"),\n", " ]\n", " )\n", " model.compile(\n", " loss=\"sparse_categorical_crossentropy\", optimizer=\"adam\"\n", " )\n", " return model" ] }, { "cell_type": "markdown", "id": "a80c02a4", "metadata": {}, "source": [ "## 4. Keras benchmarks" ] }, { "cell_type": "code", "execution_count": 6, "id": "840eef10", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:02.410910Z", "iopub.status.busy": "2021-08-02T15:39:02.409912Z", "iopub.status.idle": "2021-08-02T15:39:02.414925Z", "shell.execute_reply": "2021-08-02T15:39:02.415897Z" } }, "outputs": [], "source": [ "fit_kwargs = {\"batch_size\": 128, \"validation_split\": 0.1, \"verbose\": 0, \"epochs\": 5}" ] }, { "cell_type": "code", "execution_count": 7, "id": "4fac99e9", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:02.420037Z", "iopub.status.busy": "2021-08-02T15:39:02.418706Z", "iopub.status.idle": "2021-08-02T15:39:02.423840Z", "shell.execute_reply": "2021-08-02T15:39:02.424527Z" } }, "outputs": [], "source": [ "from sklearn.metrics import accuracy_score\n", "from scikeras._utils import TFRandomState" ] }, { "cell_type": "code", "execution_count": 8, "id": "3d9e5fa2", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:02.428109Z", "iopub.status.busy": "2021-08-02T15:39:02.427039Z", "iopub.status.idle": "2021-08-02T15:39:09.953470Z", "shell.execute_reply": "2021-08-02T15:39:09.954209Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Training time: 7.26\n", "Accuracy: 0.882\n" ] } ], "source": [ "from time import time\n", "\n", "with TFRandomState(seed=0): # we force a TF random state to be able to compare accuracy\n", " model = get_model()\n", " start = time()\n", " model.fit(x_train, y_train, **fit_kwargs)\n", " print(f\"Training time: {time()-start:.2f}\")\n", " y_pred = np.argmax(model.predict(x_test), axis=1)\n", "print(f\"Accuracy: {accuracy_score(y_test, y_pred)}\")" ] }, { "cell_type": "markdown", "id": "59a4608d", "metadata": {}, "source": [ "## 5. SciKeras benchmark" ] }, { "cell_type": "code", "execution_count": 9, "id": "59063034", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:09.958205Z", "iopub.status.busy": "2021-08-02T15:39:09.957738Z", "iopub.status.idle": "2021-08-02T15:39:09.960968Z", "shell.execute_reply": "2021-08-02T15:39:09.960524Z" } }, "outputs": [], "source": [ "clf = KerasClassifier(\n", " model=get_model,\n", " random_state=0,\n", " **fit_kwargs\n", ")" ] }, { "cell_type": "code", "execution_count": 10, "id": "20a30205", "metadata": { "execution": { "iopub.execute_input": "2021-08-02T15:39:09.965172Z", "iopub.status.busy": "2021-08-02T15:39:09.964669Z", "iopub.status.idle": "2021-08-02T15:39:16.079692Z", "shell.execute_reply": "2021-08-02T15:39:16.080093Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Training time: 5.92\n", "Accuracy: 0.882\n" ] } ], "source": [ "start = time()\n", "clf.fit(x_train, y_train)\n", "print(f\"Training time: {time()-start:.2f}\")\n", "y_pred = clf.predict(x_test)\n", "print(f\"Accuracy: {accuracy_score(y_test, y_pred)}\")" ] }, { "cell_type": "markdown", "id": "3ad555bd", "metadata": {}, "source": [ "As you can see, the overhead for SciKeras is <1 sec, and the accuracy is identical." ] } ], "metadata": { "jupytext": { "formats": "ipynb,md" }, "kernelspec": { "display_name": "Python 3", "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.8.11" } }, "nbformat": 4, "nbformat_minor": 5 }