Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/npatta01/deep-learning-dogbreed


https://github.com/npatta01/deep-learning-dogbreed

Last synced: 14 days ago
JSON representation

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_NAME

gcloud beta run deploy $APP_NAME --image gcr.io/$GCP_PROJECT/$APP_NAME --region $REGION --memory $MEMORY --allow-unauthenticated --platform managed
```