Also caching is a great idea but I would expect a lot of this logic to be managed on the server side, or I am missing something and ML is different here? I would expect to pipe as little data as possible back to the application because I want the user to wait max 3-4 seconds for the app to load at start.
Streamlit: Turn a Python script into an interactive data analysis tool
31–40 of 67 posts
Re: Streamlit: Turn a Python script into an interactive data analysis tool
#32Re: Streamlit: Turn a Python script into an interactive data analysis tool
#33Can we use asyncio to update multiple charts simultaneously / at arbitrary intervals?
Wouldn't it be better if Jupyter absorbed this API for its dashboards?
Re: Streamlit: Turn a Python script into an interactive data analysis tool
#34This is pretty neat! As this is an offshoot of some autonomous car project, what would the support be for 3D data. If I wanted to see some LIDAR or Pointcloud data in browser? Esp if its a tf-output.
Also take a look at Streetscape.gl [2] which is designed for visualizing AV data
Disclaimer: I work on Uber's data vis team but not on AVs.
[0] https://streamlit.io/docs/api.html#streamlit.deck_gl_chart [1] https://deck.gl/#/documentation/deckgl-api-reference/layers/... [2] https://avs.auto/
Re: Streamlit: Turn a Python script into an interactive data analysis tool
#35More information: to prevent unexpected behavior, Streamlit tries to detect mutations in cached objects so it can alert the user if needed. However, something went wrong while performing this check.
Please file a bug... "
Re: Streamlit: Turn a Python script into an interactive data analysis tool
#36Re: Streamlit: Turn a Python script into an interactive data analysis tool
#37Re: Streamlit: Turn a Python script into an interactive data analysis tool
#38I ended up converting my Python models to TensorFlow.js and creating an ad-hoc Vue.js app [0], but Streamlit could have been very beneficial here, especially if you can just put nginx in front of it and serve it to the masses.
Re: Streamlit: Turn a Python script into an interactive data analysis tool
#39This is awesome! Is there a way to generate a standalone binary, e.g. as an electron app? I'm looking for ways to ship small custom python/pandas data analysis apps including data to non-technical users - but as a local application.