Spaces:
Sleeping
Sleeping
fixed incorrect logs path
Browse files
app.py
CHANGED
|
@@ -24,7 +24,7 @@ def flatten_dict(d, parent_key='', sep='.'):
|
|
| 24 |
|
| 25 |
@st.cache_data
|
| 26 |
def load_config_data():
|
| 27 |
-
log_dir = Path(__file__).parent / '
|
| 28 |
configs = []
|
| 29 |
dir_ids = []
|
| 30 |
|
|
@@ -45,7 +45,7 @@ def load_config_data():
|
|
| 45 |
|
| 46 |
@st.cache_data
|
| 47 |
def load_eval_data():
|
| 48 |
-
log_dir = Path(__file__).parent / '
|
| 49 |
scores = []
|
| 50 |
dir_ids = []
|
| 51 |
|
|
@@ -67,7 +67,7 @@ def load_eval_data():
|
|
| 67 |
|
| 68 |
@st.cache_data
|
| 69 |
def load_meta_data():
|
| 70 |
-
log_dir = Path(__file__).parent / '
|
| 71 |
metas = []
|
| 72 |
dir_ids = []
|
| 73 |
|
|
|
|
| 24 |
|
| 25 |
@st.cache_data
|
| 26 |
def load_config_data():
|
| 27 |
+
log_dir = Path(__file__).parent / './logs'
|
| 28 |
configs = []
|
| 29 |
dir_ids = []
|
| 30 |
|
|
|
|
| 45 |
|
| 46 |
@st.cache_data
|
| 47 |
def load_eval_data():
|
| 48 |
+
log_dir = Path(__file__).parent / './logs'
|
| 49 |
scores = []
|
| 50 |
dir_ids = []
|
| 51 |
|
|
|
|
| 67 |
|
| 68 |
@st.cache_data
|
| 69 |
def load_meta_data():
|
| 70 |
+
log_dir = Path(__file__).parent / './logs'
|
| 71 |
metas = []
|
| 72 |
dir_ids = []
|
| 73 |
|