Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/npatta01/deep-learning-dogbreed
https://github.com/npatta01/deep-learning-dogbreed
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/npatta01/deep-learning-dogbreed
- Owner: npatta01
- Created: 2019-08-11T22:54:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T20:36:16.000Z (over 1 year ago)
- Last Synced: 2024-12-07T07:04:28.710Z (18 days ago)
- Language: Jupyter Notebook
- Size: 3.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dog Breed
## Deploy (Google Cloud Run)
Google Cloud Run is a managed serverless docker hosting solution.
```
GCP_PROJECT=...
APP_NAME=dog-breed
REGION="us-east1"
MEMORY=1G
gcloud builds submit --tag gcr.io/$GCP_PROJECT/$APP_NAMEgcloud beta run deploy $APP_NAME --image gcr.io/$GCP_PROJECT/$APP_NAME --region $REGION --memory $MEMORY --allow-unauthenticated --platform managed
```