Created
March 20, 2017 12:09
-
-
Save rahimnathwani/40ed3b6f496d377e3d17de4a82393520 to your computer and use it in GitHub Desktop.
Create GPU instance on Google Cloud, for course.fast.ai
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
gcloud beta compute instances create gpu-instance-1 \ | |
--machine-type n1-standard-1 --zone asia-east1-a \ | |
--accelerator type=nvidia-tesla-k80,count=1 \ | |
--image-family ubuntu-1604-lts --image-project ubuntu-os-cloud \ | |
--maintenance-policy TERMINATE --no-restart-on-failure \ | |
--boot-disk-size=25GB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment