Show Off Your Machine Learning Project on Web Part 1: Streamlit It!

Streamlit your project and run it in browser!

Lu-Hsuan Chen
Analytics Vidhya
3 min readJun 29, 2020

--

Visit part 2 and part 3 by clicking them.

Click this to pass through paywall.

TL;DR You can get the example project here.

Demo on my local computer.

Motivation

As time passes, you have done a lot of machine learning projects, but you need a visualization or other guys won’t know the procedure and result of your project. What’s worse, some people think that you are not prepared because you cannot use Docker and PaaS deployment (many of the machine learning jobs in Taiwan need frontend or backend skills).

Therefore, I write this series to not only create a web-based app, but also show basic Docker usage and deploy my app onto Heroku with Docker.

Goal of This Series

This series will guide you to:

  1. Use a framework to let your machine learning project run in web.
  2. Use a Docker to ease the difficulty of environment setting and integrate with DevOps workflow.
  3. Use a PaaS deployment to show off that you can deploy your project.

Goal of This Part

For this part, I will show how to create an app with streamlit. Besides, I will show how to combine your OpenCV project with streamlit with no problem.

Why Choose Streamlit?

The reason I choose streamlit rather than flask and django is for its fast prototyping and ease to setup and deploy. Most of all, you don’t need to learn some knowledge such as routing and MVC structure so that you are able to build an app.

Hey, Show Me the Example!

In this series, I use my fish-yolo-grabcut as a basis of streamlit app.

The content of this streamlit app, named app.py, is shown below:

Breaking Down

As you may be fresh to streamlit, here are some points to let you know what will this app looks like:

  1. st.title() shows the title of your streamlit app.
  2. st.file_uploader() lets user upload the file they want. In this case, the user would like to upload an image.
  3. st.write() shows the text you want in browser.
  4. st.image() shows the image in browser.

How Streamlit Works with OpenCV

st.file_uploader() will return an BytesIO object. However, cv.imread() only accepts string to read an image.

As shown in this issue, you can use cv.imdecode() instead to convert the file to an OpenCV image, or numpy array.

Of course, don’t forget to use BGR color format when showing your image using st.image()!

Run the App

Just type streamlit run app.py, then streamlit will set up the server and open the browser automatically.

Warping Up

In this part, I make an introduction of stream, and show an example app with my existing project. I also tell you what will my app look like and give a solution when using streamlit with OpenCV.

Originally published at https://cuda-chen.github.io on June 29, 2020.

If you have any thoughts and questions to share, please contact me at clh960524[at]gmail.com. Also, you can check my GitHub repositories for other works. If you are, like me passionate about machine learning, image processing and parallel computing, feel free to add me on LinkedIn.

--

--

Analytics Vidhya
Analytics Vidhya

Published in Analytics Vidhya

Analytics Vidhya is a community of Generative AI and Data Science professionals. We are building the next-gen data science ecosystem https://www.analyticsvidhya.com

Lu-Hsuan Chen
Lu-Hsuan Chen

Written by Lu-Hsuan Chen

Enthusiastic of image processing, machine learning, and parallel computing. Current status: beggar on the street.