Skip to content

Commit

Permalink
fix model name
Browse files Browse the repository at this point in the history
  • Loading branch information
SkafteNicki committed Jan 15, 2025
1 parent 2b413af commit e3021d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion s6_the_cloud/using_the_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ We are now going to start using the cloud.
--image-family=<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" \
```
Expand Down
4 changes: 3 additions & 1 deletion s7_deployment/cloud_deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,11 @@ and deploy it. The service is great for small applications that can be encapsula
```bash
gsutil mb gs://<bucket-name> # mb stands for make bucket
gsutil cp <file-name> gs://<bucket-name> # cp stands for copy
gsutil cp model.pkl gs://<bucket-name> # cp stands for copy
```
where you replace `<bucket-name>` 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:
Expand Down

0 comments on commit e3021d6

Please sign in to comment.