I have a cached function that does a time consuming operation on the data. There is a loop in the function and I have a progress bar to display the status. The inputs to the function are hashable and the outputs are 2 dataframes.
However, I found that the progress bar “reruns” each time the user interacts with the app even though the function is not supposed to be reran (it’s cached and the parameters did not change). It’s very quick but still annoying. The progress bar would drop to something like 30% and then quickly go up to 100%. But nothing is being done in the function, otherwise it would take far longer.
So I’m curious if there ways to avoid this behavior. Thanks
Thank you for sharing your question with the community!
Your post is missing a code snippet and a link to your app’s GitHub repo. Please check out our guidelines on how to post an effective question here and update your post to help the community answer your question.
import streamlit as st
import time
@st.cache_data(show_spinner=False)
def append_list(num_iterations):
progress_text = "Operation in progress. Please wait."
my_bar = st.progress(0, text=progress_text)
mylist = []
with st.empty():
for i in range(num_iterations):
my_bar.progress(int(i/num_iterations * 100), text=progress_text)
mylist.append(i)
return mylist
output = append_list(10000)
#st.write(output)
selection = st.selectbox('Make a selection', ['Good','Bad'])
if selection == 'Good':
st.write('You selected Good')
else:
st.write('You selected Bad')
In the above code, I have a progress bar inside a cached function. Upon completion of the function the progress should be 100%. However, if the user toggles the selection box at the bottom, the progress will fall to a lower value and go to 100% again, even though the function is cached, which means it shouldn’t be doing any more work.
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.