ar0s commited on
Commit
aa94331
·
1 Parent(s): 664c85a

fixed incorrect logs path

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 / '../.bulb/logs'
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 / '../.bulb/logs'
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 / '../.bulb/logs'
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