michal commited on
Commit
92c2d28
·
1 Parent(s): 92395fa
src/structures/ldek_structure.py CHANGED
@@ -53,7 +53,7 @@ def load_json_data(file_path, ORDER_LIST_LDEK):
53
 
54
 
55
  # file_path = str(abs_path / "leaderboards/r_ldek_report_scores.json")
56
- file_path = str(abs_path / "leaderboards/r_ldek_accs.json")
57
  with open(file_path, 'r', encoding='utf-8') as file:
58
  sample_data = pd.read_json(file_path).iloc[0].to_dict() # Load the first row as a dict
59
 
 
53
 
54
 
55
  # file_path = str(abs_path / "leaderboards/r_ldek_report_scores.json")
56
+ file_path = str(abs_path / "leaderboards/ldek_accs.json")
57
  with open(file_path, 'r', encoding='utf-8') as file:
58
  sample_data = pd.read_json(file_path).iloc[0].to_dict() # Load the first row as a dict
59
 
src/structures/lek_structure.py CHANGED
@@ -53,7 +53,7 @@ def load_json_data(file_path, ORDER_LIST_LEK):
53
 
54
 
55
  # file_path = str(abs_path / "leaderboards/r_lek_report_scores.json")
56
- file_path = str(abs_path / "leaderboards/r_lek_accs.json")
57
  with open(file_path, 'r', encoding='utf-8') as file:
58
  sample_data = pd.read_json(file_path).iloc[0].to_dict() # Load the first row as a dict
59
 
 
53
 
54
 
55
  # file_path = str(abs_path / "leaderboards/r_lek_report_scores.json")
56
+ file_path = str(abs_path / "leaderboards/lek_accs.json")
57
  with open(file_path, 'r', encoding='utf-8') as file:
58
  sample_data = pd.read_json(file_path).iloc[0].to_dict() # Load the first row as a dict
59