Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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(
|
| 69 |
def create_prediction_cache():
|
| 70 |
return {}
|
| 71 |
|
| 72 |
|
| 73 |
-
@st.cache_data(
|
| 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 |
|