Deployment of ML model using flask
Flask is a web application framework written in Python. I have deployed my previous project of LicensePlateDetector using Flask as an api. This is an easy and quick way to see your models in production.
- Clone the repository
- Run api.py. (Make sure Apache server is running)
- Go to localhost:8000 to see your application in action. (Port 8000 has been configured in api.py)
- Browse an input image of car ( can download from my LicensePlateDetector repo). Click on Detect License Plate
- Click on segment characters to segment the license plate.
- On clicking of Predict Characters, ML trained model is loaded and is used for prediction of characters of plate.
A brief description about the process is mentioned in the description tab.