Skip to content

Commit fd22ce9

Browse files
authored
Merge pull request #530 from tensorflow/MarkDaoust-patch-1
test
2 parents 64d8529 + 5f235d6 commit fd22ce9

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ And join the TensorFlow documentation contributors on the
1717
## License
1818

1919
[Apache License 2.0](LICENSE)
20+
21+
22+

site/en/install/gpu.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ complicates installation of the NVIDIA driver and is beyond the scope of these i
124124
<code class="devsite-terminal">sudo apt install ./nvidia-machine-learning-repo-ubuntu1604_1.0.0-1_amd64.deb</code>
125125
<code class="devsite-terminal">sudo apt-get update</code>
126126

127-
# Install NVIDIA Driver
127+
# Install NVIDIA driver
128128
# Issue with driver install requires creating /usr/lib/nvidia
129129
<code class="devsite-terminal">sudo mkdir /usr/lib/nvidia</code>
130130
<code class="devsite-terminal">sudo apt-get install --no-install-recommends nvidia-410</code>
@@ -157,6 +157,12 @@ complicates installation of the NVIDIA driver and is beyond the scope of these i
157157
<code class="devsite-terminal">sudo apt install ./nvidia-machine-learning-repo-ubuntu1604_1.0.0-1_amd64.deb</code>
158158
<code class="devsite-terminal">sudo apt update</code>
159159

160+
# Install the NVIDIA driver
161+
# Issue with driver install requires creating /usr/lib/nvidia
162+
<code class="devsite-terminal">sudo mkdir /usr/lib/nvidia</code>
163+
<code class="devsite-terminal">sudo apt-get install --no-install-recommends nvidia-410</code>
164+
# Reboot. Check that GPUs are visible using the command: nvidia-smi
165+
160166
# Install CUDA and tools. Include optional NCCL 2.x
161167
<code class="devsite-terminal">sudo apt install cuda9.0 cuda-cublas-9-0 cuda-cufft-9-0 cuda-curand-9-0 \
162168
cuda-cusolver-9-0 cuda-cusparse-9-0 libcudnn7=7.2.1.38-1+cuda9.0 \

site/en/r2/tutorials/load_data/images.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,8 @@
648648
" plt.grid(False)\n",
649649
" plt.xticks([])\n",
650650
" plt.yticks([])\n",
651-
" plt.xlabel(caption_image(all_image_paths[n]))"
651+
" plt.xlabel(caption_image(all_image_paths[n]))\n",
652+
" plt.show()"
652653
]
653654
},
654655
{

site/en/tutorials/load_data/images.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,8 @@
653653
" plt.grid(False)\n",
654654
" plt.xticks([])\n",
655655
" plt.yticks([])\n",
656-
" plt.xlabel(caption_image(all_image_paths[n]))"
656+
" plt.xlabel(caption_image(all_image_paths[n]))\n",
657+
" plt.show()"
657658
]
658659
},
659660
{

0 commit comments

Comments
 (0)