From e3021d6c079d39fccd65184fcc3447612845d980 Mon Sep 17 00:00:00 2001 From: Nicki Skafte Date: Wed, 15 Jan 2025 15:40:18 +0100 Subject: [PATCH] fix model name --- s6_the_cloud/using_the_cloud.md | 2 +- s7_deployment/cloud_deployment.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/s6_the_cloud/using_the_cloud.md b/s6_the_cloud/using_the_cloud.md index 465a77f21..91924878e 100644 --- a/s6_the_cloud/using_the_cloud.md +++ b/s6_the_cloud/using_the_cloud.md @@ -108,7 +108,7 @@ We are now going to start using the cloud. --image-family= \ --image-project=deeplearning-platform-release \ # add these arguments if you want to run on GPU and have the quota to do so - --accelerator="type=nvidia-tesla-K80,count=1" \ + --accelerator="type=nvidia-tesla-V100,count=1" \ --maintenance-policy TERMINATE \ --metadata="install-nvidia-driver=True" \ ``` diff --git a/s7_deployment/cloud_deployment.md b/s7_deployment/cloud_deployment.md index 589f657be..d6266ea7b 100644 --- a/s7_deployment/cloud_deployment.md +++ b/s7_deployment/cloud_deployment.md @@ -148,9 +148,11 @@ and deploy it. The service is great for small applications that can be encapsula ```bash gsutil mb gs:// # mb stands for make bucket - gsutil cp gs:// # cp stands for copy + gsutil cp model.pkl gs:// # cp stands for copy ``` + where you replace `` with the name of your bucket. + 3. Create a new cloud function with the same initial settings as the first one, e.g. `Python 3.11` and `HTTP`. Then implement in the `main.py` file code that: