From a94583efe6cf79e09045d0de3518233050788fa1 Mon Sep 17 00:00:00 2001 From: Dominik von Allmen <dominik.vonallmen@stud.hslu.ch> Date: Thu, 25 Nov 2021 10:16:49 +0000 Subject: [PATCH] Auto-saving for dominik.vonallmen@stud.hslu.ch on branch master from commit 90986b4 --- ...Introduction to Image Classification.ipynb | 20 +++++++++++++++---- notebooks/Block_1/requirements.txt | 12 +++++++++++ 2 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 notebooks/Block_1/requirements.txt diff --git a/notebooks/Block_1/Jupyter Notebook Block 1 - Introduction to Image Classification.ipynb b/notebooks/Block_1/Jupyter Notebook Block 1 - Introduction to Image Classification.ipynb index f103d51..ab6a9ca 100644 --- a/notebooks/Block_1/Jupyter Notebook Block 1 - Introduction to Image Classification.ipynb +++ b/notebooks/Block_1/Jupyter Notebook Block 1 - Introduction to Image Classification.ipynb @@ -13,13 +13,25 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 4, "metadata": { "nbpresent": { "id": "409a1ab7-fe1d-4430-b904-7694020a6223" } }, - "outputs": [], + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'numpy'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/tmp/ipykernel_56/1619063136.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mnumpy\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;31m# function to import CIFAR-10 data set\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0munpickle\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfile\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mpickle\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'numpy'" + ] + } + ], "source": [ "import numpy as np\n", "\n", @@ -2158,7 +2170,7 @@ "metadata": { "anaconda-cloud": {}, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -2172,7 +2184,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_1/requirements.txt b/notebooks/Block_1/requirements.txt new file mode 100644 index 0000000..d922e59 --- /dev/null +++ b/notebooks/Block_1/requirements.txt @@ -0,0 +1,12 @@ +numpy==1.19.1 +pandas==1.1.3 +matplotlib==3.3.1 +opencv-python==4.1.2.30 +tensorflow==2.4.1 +seaborn==0.11.0 +scikit-learn==0.23.2 +vega_datasets==0.8.0 +mrcnn==0.2 +altair==4.1.0 +selenium==3.141.0 +pillow==8.0.0 -- GitLab