Skip to content

Commit

Permalink
Delete nightly installs
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 261709583
  • Loading branch information
MarkDaoust authored and copybara-github committed Aug 5, 2019
1 parent 4f4b990 commit d4f43ab
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 14 deletions.
3 changes: 1 addition & 2 deletions site/en/guide/distribute_strategy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@
"# Import TensorFlow\n",
"from __future__ import absolute_import, division, print_function, unicode_literals\n",
"\n",
"!pip install tf-nightly-gpu\n",
"import tensorflow as tf"
]
},
Expand All @@ -120,7 +119,7 @@
"* Syncronous vs asynchronous training: These are two common ways of distributing training with data parallelism. In sync training, all workers train over different slices of input data in sync, and aggregating gradients at each step. In async training, all workers are independently training over the input data and updating variables asynchronously. Typically sync training is supported via all-reduce and async through parameter server architecture.\n",
"* Hardware platform: Users may want to scale their training onto multiple GPUs on one machine, or multiple machines in a network (with 0 or more GPUs each), or on Cloud TPUs.\n",
"\n",
"In order to support these use cases, we have 4 strategies available. In the next section we will talk about which of these are supported in which scenarios in TF nightly at this time."
"In order to support these use cases, we have 4 strategies available. In the next section we will talk about which of these are supported in which scenarios in TF."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion site/en/r2/guide/autograph.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"source": [
"## Setup\n",
"\n",
"Import TensorFlow 2.0 Preview Nightly and enable TF 2.0 mode:"
"Import TensorFlow 2.0:"
]
},
{
Expand Down
1 change: 0 additions & 1 deletion site/en/tutorials/distribute/keras.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@
"outputs": [],
"source": [
"# Import TensorFlow\n",
"!pip install tf-nightly-gpu\n",
"import tensorflow as tf\n",
"import tensorflow_datasets as tfds\n",
"\n",
Expand Down
1 change: 0 additions & 1 deletion site/en/tutorials/distribute/training_loops.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@
"from __future__ import absolute_import, division, print_function, unicode_literals\n",
"\n",
"# Import TensorFlow\n",
"!pip install tf-nightly-gpu\n",
"import tensorflow as tf\n",
"\n",
"# Helper libraries\n",
Expand Down
3 changes: 1 addition & 2 deletions site/en/tutorials/images/hub_with_keras.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@
},
"outputs": [],
"source": [
"!pip install -U tensorflow_hub\n",
"!pip install tf-nightly-gpu"
"!pip install -U tensorflow_hub\n"
]
},
{
Expand Down
3 changes: 1 addition & 2 deletions site/en/tutorials/keras/save_and_restore_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,7 @@
},
"outputs": [],
"source": [
"!pip install h5py pyyaml\n",
"!pip install tf_nightly"
"!pip install h5py pyyaml\n"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion site/ja/beta/guide/autograph.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"source": [
"## セットアップ\n",
"\n",
"TensorFlow 2.0 Preview Nightly をインポートして、TF 2.0 モードを有効にしてください。"
"TensorFlow 2.0 をインポートして、TF 2.0 モードを有効にしてください。"
]
},
{
Expand Down
5 changes: 2 additions & 3 deletions site/ja/tutorials/images/hub_with_keras.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,8 @@
"colab": {}
},
"source": [
"!pip install -U tensorflow_hub\n",
"!pip install tf-nightly-gpu"
],
"!pip install -U tensorflow_hub\n"
],
"execution_count": 0,
"outputs": []
},
Expand Down
2 changes: 1 addition & 1 deletion site/ko/beta/guide/using_gpu.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"source": [
"from __future__ import absolute_import, division, print_function, unicode_literals\n",
"\n",
"!pip install tf-nightly-gpu-2.0-preview\n",
"!pip install tensorflow==2.0.0-beta1\n",
"import tensorflow as tf"
]
},
Expand Down

0 comments on commit d4f43ab

Please sign in to comment.