Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ instructions below.
BUCKET_NAME="your-bucket-name"
REGION="us-central1"
gcloud auth login
gsutil mb -l $REGION gs://$BUCKET_NAME
gcloud storage buckets create gs://$BUCKET_NAME --location=$REGION
```

(optional for local docker setup) `shell sudo dockerd`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
"BUCKET_NAME = 'YOUR_BUCKET_NAME'\n",
"\n",
"GCS_BUCKET = f'gs://{BUCKET_NAME}'\n",
"!gsutil mb -p $GCP_PROJECT_ID $GCS_BUCKET"
"!gcloud storage buckets create --project $GCP_PROJECT_ID $GCS_BUCKET"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion g3doc/tutorials/hp_tuning_wide_and_deep_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@
"!kaggle competitions download -c caiis-dogfood-day-2020\n",
"\n",
"# Copy the training file to your bucket\n",
"!gsutil cp ./caiis-dogfood-day-2020/train.csv $GCS_BASE_PATH/caiis-dogfood-day-2020/train.csv\n",
"!gcloud storage cp ./caiis-dogfood-day-2020/train.csv $GCS_BASE_PATH/caiis-dogfood-day-2020/train.csv\n",
"```"
]
},
Expand Down
3 changes: 1 addition & 2 deletions src/python/tensorflow_cloud/tuner/cloud_fit_readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ you can skip the setup and authentication steps and start from step 8.
```shell
export BUCKET_NAME="your-bucket-name"
export REGION="us-central1"
gsutil mb -l $REGION gs://$BUCKET_NAME
gcloud storage buckets create gs://$BUCKET_NAME --location=$REGION
```

1. Build and install latest release
Expand Down Expand Up @@ -178,4 +178,3 @@ you can skip the setup and authentication steps and start from step 8.
## License

[Apache License 2.0](https://github.com/tensorflow/cloud/blob/master/LICENSE)