berkaygkv54 commited on
Commit
640b157
·
1 Parent(s): 101af6f

streamlit component changes

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import torch
8
  import pandas as pd
9
 
10
 
11
- @st.cache_data(persist=True, show_spinner=False, suppress_st_warning=True)
12
  def load_data():
13
  vectors = np.load(ProjectPaths.DATA_DIR.joinpath("vectors", "audio_representations.npy"))
14
  with open(ProjectPaths.DATA_DIR.joinpath("vectors", "song_names.pkl"), "rb") as reader:
 
8
  import pandas as pd
9
 
10
 
11
+ @st.cache_data
12
  def load_data():
13
  vectors = np.load(ProjectPaths.DATA_DIR.joinpath("vectors", "audio_representations.npy"))
14
  with open(ProjectPaths.DATA_DIR.joinpath("vectors", "song_names.pkl"), "rb") as reader: