We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0495ab1 commit 3622908Copy full SHA for 3622908
README.md
@@ -243,9 +243,10 @@ your Google account.
243
Then you need to execute the following commands at the top of the Notebook,
244
which clones the contents of this repository to your work-directory on Colab.
245
246
+ # Clone the repository from GitHub to Google Colab's temporary drive.
247
import os
248
work_dir = "/content/TensorFlow-Tutorials/"
- if os.getcwd() != work_dir:
249
+ if not os.path.exists(work_dir):
250
!git clone https://github.com/Hvass-Labs/TensorFlow-Tutorials.git
251
os.chdir(work_dir)
252
0 commit comments