nityathakkar commited on
Commit
15b7cb4
·
verified ·
1 Parent(s): 4589055

change function name

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ venues = client.get_group(id='venues').members
61
  iclr_venues = [v for v in venues if "iclr.cc" in v.lower() and "conference" in v.lower()]
62
 
63
  @st.cache_data
64
- def load_submissions():
65
  if os.path.exists(submissions_path):
66
  with open(submissions_path, "rb") as f:
67
  return pickle.load(f)
 
61
  iclr_venues = [v for v in venues if "iclr.cc" in v.lower() and "conference" in v.lower()]
62
 
63
  @st.cache_data
64
+ def load_ICLR_submissions():
65
  if os.path.exists(submissions_path):
66
  with open(submissions_path, "rb") as f:
67
  return pickle.load(f)