Spaces:
Build error
Build error
miss match on variable names
Browse files
data_measurements/streamlit_utils.py
CHANGED
|
@@ -24,7 +24,7 @@ from .dataset_utils import HF_DESC_FIELD, HF_FEATURE_FIELD, HF_LABEL_FIELD
|
|
| 24 |
st.set_option('deprecation.showPyplotGlobalUse', False)
|
| 25 |
json_file_path = "cache_dir/has_cache.json"
|
| 26 |
with open(json_file_path, "r", encoding="utf-8") as j:
|
| 27 |
-
|
| 28 |
|
| 29 |
def sidebar_header():
|
| 30 |
st.sidebar.markdown(
|
|
|
|
| 24 |
st.set_option('deprecation.showPyplotGlobalUse', False)
|
| 25 |
json_file_path = "cache_dir/has_cache.json"
|
| 26 |
with open(json_file_path, "r", encoding="utf-8") as j:
|
| 27 |
+
_HAS_CACHE = json.loads(j.read())
|
| 28 |
|
| 29 |
def sidebar_header():
|
| 30 |
st.sidebar.markdown(
|