Skip to content

Commit 05b1239

Browse files
authored
Merge pull request #35 from ozankaraali/master
Tensorflow version 1.13 to 1.14 (for Google Colab)
2 parents e5b054f + ff87576 commit 05b1239

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lab1/Part1_tensorflow.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
},
8484
"cell_type": "code",
8585
"source": [
86-
"is_correct_tf_version = '1.13.' in tf.__version__\n",
86+
"is_correct_tf_version = '1.14.' in tf.__version__\n",
8787
"assert is_correct_tf_version, \"Wrong tensorflow version {} installed\".format(tf.__version__)\n",
8888
"\n",
8989
"is_eager_enabled = tf.executing_eagerly()\n",
@@ -99,7 +99,7 @@
9999
},
100100
"cell_type": "markdown",
101101
"source": [
102-
"TensorFlow is set to release the next major version of TensorFlow, [TensorFlow 2.0](https://www.tensorflow.org/community/roadmap#tensorflow_20_is_coming), very soon. In this set of labs we'll be working in TensorFlow 1.12.0. The 6.S191 team is **Eager** to show you this version, as it features a (relatively) new imperative programming style called Eager execution. Under Eager execution, TensorFlow operations execute immediately as they're called from Python (which wasn't always the case!). This allows for fast debugging and a more intuitive way to get started with TensorFlow.\n",
102+
"TensorFlow is set to release the next major version of TensorFlow, [TensorFlow 2.0](https://www.tensorflow.org/community/roadmap#tensorflow_20_is_coming), very soon. In this set of labs we'll be working in TensorFlow 1.14.0. The 6.S191 team is **Eager** to show you this version, as it features a (relatively) new imperative programming style called Eager execution. Under Eager execution, TensorFlow operations execute immediately as they're called from Python (which wasn't always the case!). This allows for fast debugging and a more intuitive way to get started with TensorFlow.\n",
103103
"\n"
104104
]
105105
},

lab1/Part1_tensorflow_solution.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
},
8484
"cell_type": "code",
8585
"source": [
86-
"is_correct_tf_version = '1.13.' in tf.__version__\n",
86+
"is_correct_tf_version = '1.14.' in tf.__version__\n",
8787
"assert is_correct_tf_version, \"Wrong tensorflow version {} installed\".format(tf.__version__)\n",
8888
"\n",
8989
"is_eager_enabled = tf.executing_eagerly()\n",
@@ -99,7 +99,7 @@
9999
},
100100
"cell_type": "markdown",
101101
"source": [
102-
"TensorFlow is set to release the next major version of TensorFlow, [TensorFlow 2.0](https://www.tensorflow.org/community/roadmap#tensorflow_20_is_coming), very soon. In this set of labs we'll be working in TensorFlow 1.12.0. The 6.S191 team is **Eager** to show you this version, as it features a (relatively) new imperative programming style called Eager execution. Under Eager execution, TensorFlow operations execute immediately as they're called from Python (which wasn't always the case!). This allows for fast debugging and a more intuitive way to get started with TensorFlow.\n",
102+
"TensorFlow is set to release the next major version of TensorFlow, [TensorFlow 2.0](https://www.tensorflow.org/community/roadmap#tensorflow_20_is_coming), very soon. In this set of labs we'll be working in TensorFlow 1.14.0. The 6.S191 team is **Eager** to show you this version, as it features a (relatively) new imperative programming style called Eager execution. Under Eager execution, TensorFlow operations execute immediately as they're called from Python (which wasn't always the case!). This allows for fast debugging and a more intuitive way to get started with TensorFlow.\n",
103103
"\n"
104104
]
105105
},

lab1/Part2_music_generation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"\n",
8686
"import introtodeeplearning_labs as util\n",
8787
"\n",
88-
"is_correct_tf_version = '1.13.0' in tf.__version__\n",
88+
"is_correct_tf_version = '1.14.0' in tf.__version__\n",
8989
"assert is_correct_tf_version, \"Wrong tensorflow version ({}) installed\".format(tf.__version__)\n",
9090
"\n",
9191
"is_eager_enabled = tf.executing_eagerly()\n",

lab1/Part2_music_generation_solution.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"\n",
8686
"import introtodeeplearning_labs as util\n",
8787
"\n",
88-
"is_correct_tf_version = '1.13.0' in tf.__version__\n",
88+
"is_correct_tf_version = '1.14.0' in tf.__version__\n",
8989
"assert is_correct_tf_version, \"Wrong tensorflow version ({}) installed\".format(tf.__version__)\n",
9090
"\n",
9191
"is_eager_enabled = tf.executing_eagerly()\n",

0 commit comments

Comments
 (0)