Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/en/r1/tutorials/sequences/recurrent_quickdraw.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Then use the following command to check that your gsutil installation works and
that you can access the data bucket:

```shell
gsutil ls -r "gs://quickdraw_dataset/full/simplified/*"
gcloud storage ls --recursive "gs://quickdraw_dataset/full/simplified/*"
```

which will output a long list of files like the following:
Expand All @@ -100,7 +100,7 @@ Then create a folder and download the dataset there.
```shell
mkdir rnn_tutorial_data
cd rnn_tutorial_data
gsutil -m cp "gs://quickdraw_dataset/full/simplified/*" .
gcloud storage cp "gs://quickdraw_dataset/full/simplified/*" .
```

This download will take a while and download a bit more than 23GB of data.
Expand Down