diff --git a/Untitled.ipynb b/Untitled.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..617e6bbc53bf2ea2d854ae08fef0e8374f2f6459 --- /dev/null +++ b/Untitled.ipynb @@ -0,0 +1,57 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "id": "882d5441-cc92-4d2c-8ddb-1b23629c90a6", + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'pandas'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/tmp/ipykernel_55/1541668445.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mpandas\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mSeries\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mmethodeA\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mSeries\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m79.98\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.04\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.02\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.04\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.03\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.03\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.04\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m79.97\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.05\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.03\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.02\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.00\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m80.02\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 3\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmethodeA\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmean\u001b[0m\u001b[0;34m(\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[0;31mModuleNotFoundError\u001b[0m: No module named 'pandas'" + ] + } + ], + "source": [ + "from pandas import Series\n", + "methodeA = Series([79.98, 80.04, 80.02, 80.04, 80.03, 80.03, 80.04, 79.97, 80.05, 80.03, 80.02, 80.00, 80.02])\n", + "print(methodeA.mean())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "29f684cd-ea96-4d06-8b1d-1d837751a007", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "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.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/Block_0/Checking_Correct_Installation.ipynb b/notebooks/Block_0/Checking_Correct_Installation.ipynb index da8803f9e6bb92d63f7199416e47fd5225435c21..8c0986e7dfaf60e4619014cb494876d96c969692 100644 --- a/notebooks/Block_0/Checking_Correct_Installation.ipynb +++ b/notebooks/Block_0/Checking_Correct_Installation.ipynb @@ -109,7 +109,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -123,7 +123,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_0/Examples script/Preliminaries_3_Numpy.ipynb b/notebooks/Block_0/Examples script/Preliminaries_3_Numpy.ipynb index b07c25c949095151df39671375b79bb0cb5c4f3f..dea268896b432529016e0fe8dcc1be6980a74a88 100644 --- a/notebooks/Block_0/Examples script/Preliminaries_3_Numpy.ipynb +++ b/notebooks/Block_0/Examples script/Preliminaries_3_Numpy.ipynb @@ -484,7 +484,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -498,7 +498,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_0/Exercise Sheet - Basics Numpy.ipynb b/notebooks/Block_0/Exercise Sheet - Basics Numpy.ipynb index ce2bb78b87ba4652d57442c3bbf0448f18a0d259..af77b17059393ae2c8005f2894764de532c9ceec 100644 --- a/notebooks/Block_0/Exercise Sheet - Basics Numpy.ipynb +++ b/notebooks/Block_0/Exercise Sheet - Basics Numpy.ipynb @@ -20,19 +20,14 @@ "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "Input as Array: None\n", - "Input minus min: None\n", - "Input Array: None\n", - "Multiply 1:\n", - "None\n", - "Multiply 2:\n", - "None\n", - "Multiply 3:\n", - "None\n", - "Mean == None\n" + "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_95/4233260957.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;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mprepare_inputs\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0minputs\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;31m# TODO: create a 2-dimensional ndarray from the given 1-dimensional list;\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'numpy'" ] } ], @@ -451,9 +446,9 @@ ], "metadata": { "kernelspec": { - "display_name": "Python [conda env:root]", + "display_name": "Python 3 (ipykernel)", "language": "python", - "name": "conda-root-py" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -465,7 +460,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.3" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_0/Solution - Basics Numpy.ipynb b/notebooks/Block_0/Solution - Basics Numpy.ipynb index 1aa12bc3f0023ea3cb638a0d1c411759f2489081..bdc91cdcb761ac35d4bb32b2204b49fb2d8e4572 100644 --- a/notebooks/Block_0/Solution - Basics Numpy.ipynb +++ b/notebooks/Block_0/Solution - Basics Numpy.ipynb @@ -11,7 +11,19 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "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_110/364891074.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0;31m# Use the numpy library\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\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 3\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mset_printoptions\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mprecision\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m2\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;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'numpy'" + ] + } + ], "source": [ "# Use the numpy library\n", "import numpy as np\n", @@ -1485,7 +1497,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -1499,7 +1511,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_0/untitled.txt b/notebooks/Block_0/untitled.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/notebooks/Block_1/Solutions to Exercises Block 1 - Introduction to Image Classification.ipynb b/notebooks/Block_1/Solutions to Exercises Block 1 - Introduction to Image Classification.ipynb index c7919ace21d9b1d60cd1056027355e565aa5e9cb..d2fd3be2f6948d2b46ff2d8c0a712f5673b0a9a6 100644 --- a/notebooks/Block_1/Solutions to Exercises Block 1 - Introduction to Image Classification.ipynb +++ b/notebooks/Block_1/Solutions to Exercises Block 1 - Introduction to Image Classification.ipynb @@ -36,7 +36,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 13, "metadata": { "colab": {}, "colab_type": "code", @@ -47,28 +47,26 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already up-to-date: tensorflow_datasets in /opt/conda/lib/python3.7/site-packages (4.1.0)\n", - "Requirement already satisfied, skipping upgrade: typing-extensions; python_version < \"3.8\" in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (3.7.4.3)\n", - "Requirement already satisfied, skipping upgrade: six in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (1.14.0)\n", - "Requirement already satisfied, skipping upgrade: termcolor in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (1.1.0)\n", - "Requirement already satisfied, skipping upgrade: future in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (0.18.2)\n", - "Requirement already satisfied, skipping upgrade: tqdm in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (4.45.0)\n", - "Requirement already satisfied, skipping upgrade: importlib-resources; python_version < \"3.9\" in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (3.3.0)\n", - "Requirement already satisfied, skipping upgrade: absl-py in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (0.11.0)\n", - "Requirement already satisfied, skipping upgrade: attrs>=18.1.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (19.3.0)\n", - "Requirement already satisfied, skipping upgrade: protobuf>=3.6.1 in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (3.13.0)\n", - "Requirement already satisfied, skipping upgrade: numpy in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (1.19.1)\n", - "Requirement already satisfied, skipping upgrade: requests>=2.19.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (2.23.0)\n", - "Requirement already satisfied, skipping upgrade: tensorflow-metadata in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (0.25.0)\n", - "Requirement already satisfied, skipping upgrade: promise in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (2.3)\n", - "Requirement already satisfied, skipping upgrade: dill in /opt/conda/lib/python3.7/site-packages (from tensorflow_datasets) (0.3.3)\n", - "Requirement already satisfied, skipping upgrade: zipp>=0.4; python_version < \"3.8\" in /opt/conda/lib/python3.7/site-packages (from importlib-resources; python_version < \"3.9\"->tensorflow_datasets) (3.1.0)\n", - "Requirement already satisfied, skipping upgrade: setuptools in /opt/conda/lib/python3.7/site-packages (from protobuf>=3.6.1->tensorflow_datasets) (46.1.3.post20200325)\n", - "Requirement already satisfied, skipping upgrade: chardet<4,>=3.0.2 in /opt/conda/lib/python3.7/site-packages (from requests>=2.19.0->tensorflow_datasets) (3.0.4)\n", - "Requirement already satisfied, skipping upgrade: idna<3,>=2.5 in /opt/conda/lib/python3.7/site-packages (from requests>=2.19.0->tensorflow_datasets) (2.9)\n", - "Requirement already satisfied, skipping upgrade: certifi>=2017.4.17 in /opt/conda/lib/python3.7/site-packages (from requests>=2.19.0->tensorflow_datasets) (2020.6.20)\n", - "Requirement already satisfied, skipping upgrade: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /opt/conda/lib/python3.7/site-packages (from requests>=2.19.0->tensorflow_datasets) (1.25.9)\n", - "Requirement already satisfied, skipping upgrade: googleapis-common-protos<2,>=1.52.0 in /opt/conda/lib/python3.7/site-packages (from tensorflow-metadata->tensorflow_datasets) (1.52.0)\n" + "Requirement already satisfied: tensorflow_datasets in /opt/conda/lib/python3.9/site-packages (4.4.0)\n", + "Requirement already satisfied: absl-py in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (0.12.0)\n", + "Requirement already satisfied: future in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (0.18.2)\n", + "Requirement already satisfied: attrs>=18.1.0 in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (21.2.0)\n", + "Requirement already satisfied: numpy in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (1.21.5)\n", + "Requirement already satisfied: dill in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (0.3.4)\n", + "Requirement already satisfied: six in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (1.16.0)\n", + "Requirement already satisfied: tqdm in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (4.62.0)\n", + "Requirement already satisfied: requests>=2.19.0 in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (2.26.0)\n", + "Requirement already satisfied: termcolor in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (1.1.0)\n", + "Requirement already satisfied: tensorflow-metadata in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (1.5.0)\n", + "Requirement already satisfied: promise in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (2.3)\n", + "Requirement already satisfied: protobuf>=3.12.2 in /opt/conda/lib/python3.9/site-packages (from tensorflow_datasets) (3.19.1)\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/conda/lib/python3.9/site-packages (from requests>=2.19.0->tensorflow_datasets) (3.1)\n", + "Requirement already satisfied: charset-normalizer~=2.0.0 in /opt/conda/lib/python3.9/site-packages (from requests>=2.19.0->tensorflow_datasets) (2.0.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/lib/python3.9/site-packages (from requests>=2.19.0->tensorflow_datasets) (2021.5.30)\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/conda/lib/python3.9/site-packages (from requests>=2.19.0->tensorflow_datasets) (1.26.6)\n", + "Requirement already satisfied: googleapis-common-protos<2,>=1.52.0 in /opt/conda/lib/python3.9/site-packages (from tensorflow-metadata->tensorflow_datasets) (1.54.0)\n", + "\u001b[33mWARNING: You are using pip version 21.2.4; however, version 21.3.1 is available.\n", + "You should consider upgrading via the '/opt/conda/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n" ] } ], @@ -78,7 +76,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 14, "metadata": { "colab": {}, "colab_type": "code", @@ -86,10 +84,14 @@ }, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "2.1.0\n" + "ename": "ModuleNotFoundError", + "evalue": "No module named 'tensorflow'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/tmp/ipykernel_74/2358685983.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0;31m# verify you have version > 2.0\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 11\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mtensorflow\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mtf\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 12\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__version__\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 13\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'tensorflow'" ] } ], @@ -123,9 +125,21 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 15, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'tensorflow'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/tmp/ipykernel_74/1229835161.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;31m# Import TensorFlow Datasets\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 5\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mtensorflow\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mtf\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 6\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mtensorflow_datasets\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mtfds\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mtfds\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdisable_progress_bar\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[0;31mModuleNotFoundError\u001b[0m: No module named 'tensorflow'" + ] + } + ], "source": [ "from __future__ import absolute_import, division, print_function, unicode_literals\n", "\n", @@ -1345,7 +1359,7 @@ "version": "0.3.2" }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -1359,7 +1373,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_2/Exercises Block 2 - Neural Networks.ipynb b/notebooks/Block_2/Exercises Block 2 - Neural Networks.ipynb index ac2bcf749ad69f9324ed9e59e790a2c161d42e2e..87c1cccdf1258b2cf3ec158637884d64602548bf 100644 --- a/notebooks/Block_2/Exercises Block 2 - Neural Networks.ipynb +++ b/notebooks/Block_2/Exercises Block 2 - Neural Networks.ipynb @@ -764,7 +764,7 @@ "toc_visible": true }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -778,7 +778,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_2/Solutions to Exercises - Block 2.ipynb b/notebooks/Block_2/Solutions to Exercises - Block 2.ipynb index b74e3e8e9a140560dbd000c441e5c4bf7c73f606..9689b2211e33fce8f7ebed18e29578a56489a0d4 100644 --- a/notebooks/Block_2/Solutions to Exercises - Block 2.ipynb +++ b/notebooks/Block_2/Solutions to Exercises - Block 2.ipynb @@ -1038,7 +1038,7 @@ "toc_visible": true }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -1052,7 +1052,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_3/Jupyter Notebook - Introduction Colab.ipynb b/notebooks/Block_3/Jupyter Notebook - Introduction Colab.ipynb index f1aff1343ed6588d1a8697af42d07b822e9d5638..cee014a55cd26481192c99bf07c11ee9e47e2937 100644 --- a/notebooks/Block_3/Jupyter Notebook - Introduction Colab.ipynb +++ b/notebooks/Block_3/Jupyter Notebook - Introduction Colab.ipynb @@ -1350,7 +1350,7 @@ "provenance": [] }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -1364,7 +1364,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_3/Jupyter Notebook Block 3 - Training and Optimizing Neural Networks.ipynb b/notebooks/Block_3/Jupyter Notebook Block 3 - Training and Optimizing Neural Networks.ipynb index cca495e4ed0707b980079453063635f0f7b33b6f..4c24b74add3e890f650da7e0a8dc63ee73b37de6 100644 --- a/notebooks/Block_3/Jupyter Notebook Block 3 - Training and Optimizing Neural Networks.ipynb +++ b/notebooks/Block_3/Jupyter Notebook Block 3 - Training and Optimizing Neural Networks.ipynb @@ -4761,7 +4761,7 @@ "toc_visible": true }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -4775,7 +4775,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4, diff --git a/notebooks/Block_4/Jupyter Notebook Block 4 - Convolutional Neural Networks.ipynb b/notebooks/Block_4/Jupyter Notebook Block 4 - Convolutional Neural Networks.ipynb index 8a65b22cafa961d647967ce58d0be1e5e5709b17..80519f81be5587cb6aca822036ff25cebb02e8e1 100644 --- a/notebooks/Block_4/Jupyter Notebook Block 4 - Convolutional Neural Networks.ipynb +++ b/notebooks/Block_4/Jupyter Notebook Block 4 - Convolutional Neural Networks.ipynb @@ -3533,7 +3533,7 @@ "toc_visible": true }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -3547,7 +3547,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.6" + "version": "3.9.6" } }, "nbformat": 4,