Hacker News new | ask | show | jobs
by cschmid 1905 days ago
Streamlit is used by data science/ML people to turn models into (usually internal) MVPs.

Let's say you implemented your model in python, and want to show it off:

With streamlit, you can simply take your python script, turn the variables you want to change and the plot/dataframes you want to output into streamlit objects. That takes about 5-10 minutes, and then you can already serve your application. It's almost like it's no extra work.

1 comments

That makes sense. "MVP" use cases make perfect sense. But I suppose you could also make dynamic python that another app created just like HTML is the target response for many web apps. New possibilities. I will check this out more.