Deploying the Automobile price prediction ML problem using flask
Steps followed in deploying Machine Learning model using flask to Heroku are-
Machine Learning model is build using Regression technique in order to predict the price of the automobile.
I have defined the app routes and completing the app.py file, and created a Index.html which will serve as the home page, which contains all the field required to run the model.
Now create some of the required files for deployement and then commit all the files to GitHub.
Most important thing is to create a Procfile and requirement.txt, which handles the configuration part in order to deploy the model into heroku server. web: gunicorn is the fixed command, after that the first parameter is app.py file i.e the file which will be executed first. Provide the first parameter without the file extension. Second parameter is the flask app name.
Requirements consists of all the libraries that has to get installed in heroku environment.
Heroku is a multi-language cloud application platform that enables developers to deploy, scale, and manage their applications. Heroku is elegant, flexible, and easy to use, offering developers the simplest path to getting their apps to market.
Heroku gives the direct option to connect with GitHub and deploy the code.
After successful deployment, app will be created. Check out the web-app and provide your suggestions https://automobile-price-pred-app.herokuapp.com/