Created
November 3, 2018 20:19
-
-
Save b0noI/fad3a6a135698e87a345938d0f328d5b 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-cpu" | |
export ZONE="us-west1-b" | |
export INSTANCE_NAME="inferance-model-prep" | |
export INSTANCE_TYPE="n1-standard-8" | |
gcloud compute instances create $INSTANCE_NAME \ | |
--zone=$ZONE \ | |
--image-family=$IMAGE_FAMILY \ | |
--image-project=deeplearning-platform-release \ | |
--machine-type=$INSTANCE_TYPE \ | |
--boot-disk-size=120GB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment