From 6c2239c2dd2f9e77825fd33b04a5f194cc6dff1c Mon Sep 17 00:00:00 2001 From: Arthur Funnell Date: Wed, 3 Jul 2024 15:31:11 -0700 Subject: [PATCH] Updating imports in binary test ipynb --- notebooks/binary_test.ipynb | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/notebooks/binary_test.ipynb b/notebooks/binary_test.ipynb index bcedbce..b9f663f 100644 --- a/notebooks/binary_test.ipynb +++ b/notebooks/binary_test.ipynb @@ -16,25 +16,10 @@ "from sklearn.datasets import load_breast_cancer\n", "\n", "from functions import *\n", - "from model_tuner import *" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from model_tuner import pickleObjects" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "pickleObjects.dumpObjects()" + "\n", + "from model_tuner.model_tuner_utils import Model\n", + "from model_tuner.bootstrapper import evaluate_bootstrap_metrics\n", + "from model_tuner.pickleObjects import dumpObjects, loadObjects" ] }, {