Created
December 6, 2018 19:06
-
-
Save b0noI/1d22c98cc943b8b0c6a32ca756125913 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export IMAGE_FAMILY="tf-latest-gpu" | |
export ZONE="us-west1-b" | |
export INSTANCE_NAME="model-prep" | |
gcloud compute instances create $INSTANCE_NAME \ | |
--zone=$ZONE \ | |
--image-family=$IMAGE_FAMILY \ | |
--machine-type=n1-standard-8 \ | |
--image-project=deeplearning-platform-release \ | |
--maintenance-policy=TERMINATE \ | |
--accelerator="type=nvidia-tesla-t4,count=1" \ | |
--metadata="install-nvidia-driver=True" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment