Skip to content
Open
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 Fastai_Projects/GCP_Commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ By Default the project_ID is set to the logged in project ID but to ssh we need

## Create 250GB Disk and V100 or P4 Machines in project project_ID at asia-east1-a

gcloud beta compute instances create fastai-boot --zone=asia-east1-a --machine-type=n1-standard-1 --subnet=fastai --maintenance-policy=TERMINATE --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --accelerator=type=nvidia-tesla-k80,count=1 --image-family=pytorch-1-0-cu92-experimental --image-project=deeplearning-platform-release --boot-disk-size=250GB --metadata="install-nvidia-driver=True" --no-boot-disk-auto-delete --boot-disk-type=pd-standard --boot-disk-device-name=fastai-boot-disk
gcloud beta compute instances create fastai-boot --zone=asia-east1-a --machine-type=n1-standard-1 --subnet=fastai --maintenance-policy=TERMINATE --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --accelerator=type=nvidia-tesla-k80,count=1 --image-family=pytorch-latest-gpu --image-project=deeplearning-platform-release --boot-disk-size=250GB --metadata="install-nvidia-driver=True" --no-boot-disk-auto-delete --boot-disk-type=pd-standard --boot-disk-device-name=fastai-boot-disk


gcloud compute --project=$Project_ID ssh --zone=asia-east1-a jupyter@fastai-boot
Expand All @@ -20,7 +20,7 @@ By Default the project_ID is set to the logged in project ID but to ssh we need

## Create 250GB Disk and V100 or P4 Machines in project project_ID at europe-west4-c

gcloud beta compute instances create fastai-boot-eu --zone=europe-west4-c --machine-type=n1-standard-1 --subnet=fastai --maintenance-policy=TERMINATE --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --accelerator=type=nvidia-tesla-p4,count=1 --image-family=pytorch-1-0-cu92-experimental --image-project=deeplearning-platform-release --boot-disk-size=250GB --metadata="install-nvidia-driver=True" --no-boot-disk-auto-delete --boot-disk-type=pd-standard --boot-disk-device-name=fastai-boot-disk
gcloud beta compute instances create fastai-boot-eu --zone=europe-west4-c --machine-type=n1-standard-1 --subnet=fastai --maintenance-policy=TERMINATE --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --accelerator=type=nvidia-tesla-p4,count=1 --image-family=pytorch-latest-gpu --image-project=deeplearning-platform-release --boot-disk-size=250GB --metadata="install-nvidia-driver=True" --no-boot-disk-auto-delete --boot-disk-type=pd-standard --boot-disk-device-name=fastai-boot-disk

gcloud compute --project=$Project_ID ssh --zone=europe-west4-c jupyter@fastai-boot-eu

Expand Down