diff --git a/01_the_machine_learning_landscape.ipynb b/01_the_machine_learning_landscape.ipynb index c23fd42..71e6f3b 100644 --- a/01_the_machine_learning_landscape.ipynb +++ b/01_the_machine_learning_landscape.ipynb @@ -40,9 +40,9 @@ }, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)" + "assert sys.version_info >= (3, 8)" ] }, { @@ -695,7 +695,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "metadata": { "interpreter": { diff --git a/02_end_to_end_machine_learning_project.ipynb b/02_end_to_end_machine_learning_project.ipynb index 70a9b72..c6e8f17 100644 --- a/02_end_to_end_machine_learning_project.ipynb +++ b/02_end_to_end_machine_learning_project.ipynb @@ -50,9 +50,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Scikit-Learn ≥1.0 is required\n", "import sklearn\n", @@ -2348,7 +2348,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "279px", diff --git a/03_classification.ipynb b/03_classification.ipynb index 06bc62e..a84e3b2 100644 --- a/03_classification.ipynb +++ b/03_classification.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Scikit-Learn ≥1.0 is required\n", "import sklearn\n", @@ -2616,7 +2616,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": {}, "toc": { diff --git a/04_training_linear_models.ipynb b/04_training_linear_models.ipynb index 9261bbc..223fb48 100644 --- a/04_training_linear_models.ipynb +++ b/04_training_linear_models.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Scikit-Learn ≥1.0 is required\n", "import sklearn\n", @@ -1840,7 +1840,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": {}, "toc": { diff --git a/05_decision_trees.ipynb b/05_decision_trees.ipynb index 8aaf4dc..5a15955 100644 --- a/05_decision_trees.ipynb +++ b/05_decision_trees.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Scikit-Learn ≥1.0 is required\n", "import sklearn\n", @@ -808,7 +808,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "309px", diff --git a/06_ensemble_learning_and_random_forests.ipynb b/06_ensemble_learning_and_random_forests.ipynb index c1cd63b..7d20eea 100644 --- a/06_ensemble_learning_and_random_forests.ipynb +++ b/06_ensemble_learning_and_random_forests.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Scikit-Learn ≥1.0 is required\n", "import sklearn\n", @@ -1513,7 +1513,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "252px", diff --git a/07_dimensionality_reduction.ipynb b/07_dimensionality_reduction.ipynb index 9188b1a..d466a34 100644 --- a/07_dimensionality_reduction.ipynb +++ b/07_dimensionality_reduction.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Common imports\n", "import numpy as np\n", @@ -2382,7 +2382,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" } }, "nbformat": 4, diff --git a/08_unsupervised_learning.ipynb b/08_unsupervised_learning.ipynb index 66b1b13..d94fece 100644 --- a/08_unsupervised_learning.ipynb +++ b/08_unsupervised_learning.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Common imports\n", "import numpy as np\n", @@ -3859,7 +3859,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" } }, "nbformat": 4, diff --git a/09_neural_nets_with_keras.ipynb b/09_neural_nets_with_keras.ipynb index bccce8d..762009d 100644 --- a/09_neural_nets_with_keras.ipynb +++ b/09_neural_nets_with_keras.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Common imports\n", "import numpy as np\n", @@ -2007,7 +2007,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "264px", diff --git a/10_training_deep_neural_networks.ipynb b/10_training_deep_neural_networks.ipynb index b8de2c2..1eb3bce 100644 --- a/10_training_deep_neural_networks.ipynb +++ b/10_training_deep_neural_networks.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Common imports\n", "import numpy as np\n", @@ -2710,7 +2710,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "360px", diff --git a/11_custom_models_and_training_with_tensorflow.ipynb b/11_custom_models_and_training_with_tensorflow.ipynb index 2f210f5..0203d80 100644 --- a/11_custom_models_and_training_with_tensorflow.ipynb +++ b/11_custom_models_and_training_with_tensorflow.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Common imports\n", "import numpy as np\n", @@ -3975,7 +3975,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" } }, "nbformat": 4, diff --git a/12_loading_and_preprocessing_data.ipynb b/12_loading_and_preprocessing_data.ipynb index 2e1bd76..19f1337 100644 --- a/12_loading_and_preprocessing_data.ipynb +++ b/12_loading_and_preprocessing_data.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Is this notebook running on Colab or Kaggle?\n", "IS_COLAB = \"google.colab\" in sys.modules\n", @@ -2793,7 +2793,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "264px", diff --git a/13_deep_computer_vision_with_cnns.ipynb b/13_deep_computer_vision_with_cnns.ipynb index 6364d2a..0d59979 100644 --- a/13_deep_computer_vision_with_cnns.ipynb +++ b/13_deep_computer_vision_with_cnns.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Is this notebook running on Colab or Kaggle?\n", "IS_COLAB = \"google.colab\" in sys.modules\n", @@ -1456,7 +1456,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": {}, "toc": { diff --git a/14_processing_sequences_using_rnns_and_cnns.ipynb b/14_processing_sequences_using_rnns_and_cnns.ipynb index ebf1689..9144f22 100644 --- a/14_processing_sequences_using_rnns_and_cnns.ipynb +++ b/14_processing_sequences_using_rnns_and_cnns.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Is this notebook running on Colab or Kaggle?\n", "IS_COLAB = \"google.colab\" in sys.modules\n", @@ -2028,7 +2028,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": {}, "toc": { diff --git a/15_nlp_with_rnns_and_attention.ipynb b/15_nlp_with_rnns_and_attention.ipynb index a896ea0..9b3f31a 100644 --- a/15_nlp_with_rnns_and_attention.ipynb +++ b/15_nlp_with_rnns_and_attention.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Is this notebook running on Colab or Kaggle?\n", "IS_COLAB = \"google.colab\" in sys.modules\n", @@ -2779,7 +2779,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": {}, "toc": { diff --git a/16_autoencoders_and_gans.ipynb b/16_autoencoders_and_gans.ipynb index 4c0a23c..35e3bac 100644 --- a/16_autoencoders_and_gans.ipynb +++ b/16_autoencoders_and_gans.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Is this notebook running on Colab or Kaggle?\n", "IS_COLAB = \"google.colab\" in sys.modules\n", @@ -1771,7 +1771,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "381px", diff --git a/17_reinforcement_learning.ipynb b/17_reinforcement_learning.ipynb index 6f1316d..c00a6f9 100644 --- a/17_reinforcement_learning.ipynb +++ b/17_reinforcement_learning.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Is this notebook running on Colab or Kaggle?\n", "IS_COLAB = \"google.colab\" in sys.modules\n", @@ -3224,7 +3224,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" } }, "nbformat": 4, diff --git a/18_training_and_deploying_at_scale.ipynb b/18_training_and_deploying_at_scale.ipynb index 5aced84..10fc606 100644 --- a/18_training_and_deploying_at_scale.ipynb +++ b/18_training_and_deploying_at_scale.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Is this notebook running on Colab or Kaggle?\n", "IS_COLAB = \"google.colab\" in sys.modules\n", @@ -1280,7 +1280,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" } }, "nbformat": 4, diff --git a/extra_autodiff.ipynb b/extra_autodiff.ipynb index c8fa36a..2ee7bc1 100644 --- a/extra_autodiff.ipynb +++ b/extra_autodiff.ipynb @@ -912,7 +912,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": { "height": "603px", diff --git a/extra_gradient_descent_comparison.ipynb b/extra_gradient_descent_comparison.ipynb index 0246515..a84570e 100644 --- a/extra_gradient_descent_comparison.ipynb +++ b/extra_gradient_descent_comparison.ipynb @@ -271,7 +271,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" } }, "nbformat": 4, diff --git a/extra_support_vector_machines.ipynb b/extra_support_vector_machines.ipynb index 239a060..c11293f 100644 --- a/extra_support_vector_machines.ipynb +++ b/extra_support_vector_machines.ipynb @@ -48,9 +48,9 @@ "metadata": {}, "outputs": [], "source": [ - "# Python ≥3.7 is required\n", + "# Python ≥3.8 is required\n", "import sys\n", - "assert sys.version_info >= (3, 7)\n", + "assert sys.version_info >= (3, 8)\n", "\n", "# Scikit-Learn ≥1.0 is required\n", "import sklearn\n", @@ -1958,7 +1958,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": {}, "toc": { diff --git a/index.ipynb b/index.ipynb index a92b578..c4ad566 100644 --- a/index.ipynb +++ b/index.ipynb @@ -130,7 +130,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "nav_menu": {}, "toc": { diff --git a/math_differential_calculus.ipynb b/math_differential_calculus.ipynb index c13d633..e229924 100644 --- a/math_differential_calculus.ipynb +++ b/math_differential_calculus.ipynb @@ -1783,7 +1783,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "pycharm": { "stem_cell": { diff --git a/math_linear_algebra.ipynb b/math_linear_algebra.ipynb index c5cb85c..4233cb7 100644 --- a/math_linear_algebra.ipynb +++ b/math_linear_algebra.ipynb @@ -3077,7 +3077,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "toc": { "toc_cell": false, diff --git a/tools_matplotlib.ipynb b/tools_matplotlib.ipynb index 017f153..43b2b85 100644 --- a/tools_matplotlib.ipynb +++ b/tools_matplotlib.ipynb @@ -1256,7 +1256,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "toc": { "toc_cell": true, diff --git a/tools_numpy.ipynb b/tools_numpy.ipynb index ad8e0ec..580815c 100644 --- a/tools_numpy.ipynb +++ b/tools_numpy.ipynb @@ -2852,7 +2852,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "toc": { "toc_cell": false, diff --git a/tools_pandas.ipynb b/tools_pandas.ipynb index 74017a2..d880389 100644 --- a/tools_pandas.ipynb +++ b/tools_pandas.ipynb @@ -2807,7 +2807,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.10" + "version": "3.8.12" }, "toc": { "toc_cell": false,