{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "from sklearn.datasets import load_iris\n", "from sklearn.preprocessing import MaxAbsScaler as skMaxAbsScaler" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "class MaxAbsScaler():\n", " def fit(self, X):\n", " self.scale_ = np.max(np.abs(X), axis=0)\n", " return self\n", "\n", " def transform(self, X):\n", " return X / self.scale_" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "X, _ = load_iris(return_X_y=True)\n", "sc1 = MaxAbsScaler().fit(X)\n", "sc2 = skMaxAbsScaler().fit(X)\n", "assert np.allclose(sc1.scale_, sc2.scale_)\n", "Xt1 = sc1.transform(X)\n", "Xt2 = sc2.transform(X)\n", "assert np.allclose(Xt1, Xt2)" ] } ], "metadata": { "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.6.8" } }, "nbformat": 4, "nbformat_minor": 2 }