Shad0ws commited on
Commit
4ac3aa5
1 Parent(s): 352aef3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -65,12 +65,12 @@ YT_VIDEO_REGEX = r'''(?x)^
65
 
66
 
67
  # Faster caching system for predictions (No need to hash)
68
- @st.cache_data(persist=True, allow_output_mutation=True)
69
  def create_prediction_cache():
70
  return {}
71
 
72
 
73
- @st.cache_data(persist=True, allow_output_mutation=True)
74
  def create_function_cache():
75
  return {}
76
 
 
65
 
66
 
67
  # Faster caching system for predictions (No need to hash)
68
+ @st.cache_data()
69
  def create_prediction_cache():
70
  return {}
71
 
72
 
73
+ @st.cache_data()
74
  def create_function_cache():
75
  return {}
76