From 0c2c80d89e7cd7709f9bd0f797992077f5955e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Thu, 12 Mar 2020 12:16:18 +1300 Subject: [PATCH] Add warning about Keras issue 13586 --- 10_neural_nets_with_keras.ipynb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/10_neural_nets_with_keras.ipynb b/10_neural_nets_with_keras.ipynb index 28881c5..f18bf46 100644 --- a/10_neural_nets_with_keras.ipynb +++ b/10_neural_nets_with_keras.ipynb @@ -1510,6 +1510,13 @@ "tf.random.set_seed(42)" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Warning**: the following cell crashes at the end of training. This seems to be caused by [Keras issue #13586](https://github.com/keras-team/keras/issues/13586), which was triggered by a recent change in Scikit-Learn. [Pull Request #13598](https://github.com/keras-team/keras/pull/13598) seems to fix the issue, so this problem should be resolved soon." + ] + }, { "cell_type": "code", "execution_count": 100,