Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/npatta01/bear-classifier
https://github.com/npatta01/bear-classifier
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/npatta01/bear-classifier
- Owner: npatta01
- Created: 2018-11-02T11:44:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T11:45:38.000Z (about 6 years ago)
- Last Synced: 2024-12-07T07:04:27.889Z (about 1 month ago)
- Language: Jupyter Notebook
- Size: 75.5 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Image Classifier
My awesome Bear classifier.
Can distinguish between "Teddy" , "Grizzly" , "Black"# Deployment
## Option A: Heroku
Setup
```
wget -qO- https://cli-assets.heroku.com/install-ubuntu.sh | sh
heroku container:login
``````
APP_NAME="np-img-classifier"
heroku create $APP_NAMEheroku container:push web --app ${APP_NAME}
heroku container:push web
#new command
heroku container:release web --app ${APP_NAME}
heroku open --app $APP_NAME
```## Option B: Now
Setup
```
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejssudo npm install -g --unsafe-perm now
```
Deploy
```
now
```