Hacker News new | ask | show | jobs
by bigtoine123 3242 days ago
There is a simple music recommender webapp shown in the video. From your model you got a python function that maps one song (e.g. by artist,title) to other songs. What is the fastest way to build this interactive webapp (for internal, experimental) use?
2 comments

For internal/experimental/exploratory use, I like Jupyter [0].

0: https://jupyter.org/

I appreciate it I'm gonna try it soon
For quick interactive data apps, there is also now Dash by Plot.ly[0]. It aims to do for Python what shiny does for R.

[0] https://plot.ly/products/dash/

Thank you very much