270 - How to deploy your trained machine learning model as a web app on Heroku (No Docker)

Code generated in the video can be downloaded from here: This video demonstrates the process of deploying your trained deep learning model as a browser-based app on Heroku. It uses HAM10000 trained model to predict skin cancer type for the image supplied by the user. Some useful commands: Please install Heroku CLI on your system. To log in to your Heroku account from CLI: heroku login -i​ To scale dynos for your app: heroku ps:scale web=1 --app app_name
Back to Top