Unverified Commit a824b6fe authored by Billy Lamberta's avatar Billy Lamberta Committed by GitHub
Browse files

Move import to top

parent 3161fd6c
......@@ -136,6 +136,8 @@
},
"cell_type": "code",
"source": [
"from __future__ import absolute_import, division, print_function\n",
"\n",
"import tensorflow as tf\n",
"from tensorflow import keras\n",
"\n",
......@@ -402,8 +404,6 @@
},
"cell_type": "code",
"source": [
"from __future__ import absolute_import, division, print_function\n",
"\n",
"# Display training progress by printing a single dot for each completed epoch\n",
"class PrintDot(keras.callbacks.Callback):\n",
" def on_epoch_end(self, epoch, logs):\n",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment