Spaces:
Sleeping
Sleeping
change function name
Browse files
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
|
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)
|