michal commited on
Commit
2051b0b
·
1 Parent(s): d32e3b6
src/abouts.py CHANGED
@@ -7,7 +7,7 @@ HEADER_TITLE = """
7
  </div>
8
  """
9
 
10
- LEADERBOARD_DESC = """## ...
11
  """
12
 
13
  PES_DESC = """### PES (Państwowy Egzamin Specjalizacyjny, National Specialization Examination, Board Certification Exam)
 
7
  </div>
8
  """
9
 
10
+ LEADERBOARD_DESC = """###
11
  """
12
 
13
  PES_DESC = """### PES (Państwowy Egzamin Specjalizacyjny, National Specialization Examination, Board Certification Exam)
src/structures/all_structure.py CHANGED
@@ -5,6 +5,8 @@ from ..styles import highlight_color
5
  abs_path = Path(__file__).parent.parent.parent
6
 
7
  def replace_models_names(model_name):
 
 
8
  replaces = {'meta-llama': 'meta_llama',
9
  'epfl-llm':'epfl_llm',
10
  '01-ai':'01_ai'}
 
5
  abs_path = Path(__file__).parent.parent.parent
6
 
7
  def replace_models_names(model_name):
8
+ if "gpt" in model_name:
9
+ return model_name
10
  replaces = {'meta-llama': 'meta_llama',
11
  'epfl-llm':'epfl_llm',
12
  '01-ai':'01_ai'}
src/structures/ldek_structure.py CHANGED
@@ -5,6 +5,8 @@ from ..styles import highlight_color
5
  abs_path = Path(__file__).parent.parent.parent
6
 
7
  def replace_models_names(model_name):
 
 
8
  replaces = {'meta-llama': 'meta_llama',
9
  'epfl-llm':'epfl_llm',
10
  '01-ai':'01_ai'}
 
5
  abs_path = Path(__file__).parent.parent.parent
6
 
7
  def replace_models_names(model_name):
8
+ if "gpt" in model_name:
9
+ return model_name
10
  replaces = {'meta-llama': 'meta_llama',
11
  'epfl-llm':'epfl_llm',
12
  '01-ai':'01_ai'}
src/structures/lek_structure.py CHANGED
@@ -5,6 +5,8 @@ from ..styles import highlight_color
5
  abs_path = Path(__file__).parent.parent.parent
6
 
7
  def replace_models_names(model_name):
 
 
8
  replaces = {'meta-llama': 'meta_llama',
9
  'epfl-llm':'epfl_llm',
10
  '01-ai':'01_ai'}
 
5
  abs_path = Path(__file__).parent.parent.parent
6
 
7
  def replace_models_names(model_name):
8
+ if "gpt" in model_name:
9
+ return model_name
10
  replaces = {'meta-llama': 'meta_llama',
11
  'epfl-llm':'epfl_llm',
12
  '01-ai':'01_ai'}
src/structures/pes_structure.py CHANGED
@@ -6,6 +6,8 @@ from ..styles import highlight_color
6
  abs_path = Path(__file__).parent.parent.parent
7
 
8
  def replace_models_names(model_name):
 
 
9
  replaces = {'meta-llama': 'meta_llama',
10
  'epfl-llm':'epfl_llm',
11
  '01-ai':'01_ai'}
 
6
  abs_path = Path(__file__).parent.parent.parent
7
 
8
  def replace_models_names(model_name):
9
+ if "gpt" in model_name:
10
+ return model_name
11
  replaces = {'meta-llama': 'meta_llama',
12
  'epfl-llm':'epfl_llm',
13
  '01-ai':'01_ai'}