fzoll commited on
Commit
0bc79d9
·
1 Parent(s): 5a5767f

Add model tooltips

Browse files
Files changed (1) hide show
  1. app/backend/multi_header_util.py +9 -9
app/backend/multi_header_util.py CHANGED
@@ -144,7 +144,7 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
144
  }
145
  }"""),
146
  'suppressSizeToFit': True,
147
- 'headerTooltip': 'Model Name',
148
 
149
  },
150
  {'headerName': "Vendor",
@@ -152,14 +152,14 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
152
  'headerClass': 'custom-header-style',
153
  'cellClass': 'custom-cell-style',
154
  # 'suppressSizeToFit': True,
155
- 'headerTooltip': 'Vendor',
156
  },
157
  {'headerName': "Overall Score",
158
  'field': avg_column,
159
  'headerClass': 'custom-header-style',
160
  'cellClass': 'custom-cell-style',
161
  # 'suppressSizeToFit': True,
162
- 'headerTooltip': 'Overall Score',
163
 
164
  },
165
 
@@ -169,7 +169,7 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
169
  'headerClass': 'custom-header-style',
170
  'cellClass': 'custom-cell-style',
171
  # 'suppressSizeToFit': True,
172
- 'headerTooltip': 'Open Average',
173
 
174
  },
175
 
@@ -178,7 +178,7 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
178
  'headerClass': 'custom-header-style',
179
  'cellClass': 'custom-cell-style',
180
  # 'suppressSizeToFit': True,
181
- 'headerTooltip': 'Closed Average',
182
 
183
  },
184
 
@@ -188,7 +188,7 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
188
  'headerClass': 'custom-header-style',
189
  'cellClass': 'custom-cell-style',
190
  # 'suppressSizeToFit': True,
191
- 'headerTooltip': 'Embd Dtype',
192
 
193
  },
194
  {
@@ -209,7 +209,7 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
209
  }
210
  """
211
  ),
212
- 'headerTooltip': 'Embd Dim',
213
 
214
  },
215
  {
@@ -230,7 +230,7 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
230
  ),
231
  "width": 120,
232
  # 'suppressSizeToFit': True,
233
- 'headerTooltip': 'Number of Parameters',
234
 
235
  },
236
  {
@@ -251,7 +251,7 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
251
  }
252
  """
253
  ),
254
- 'headerTooltip': 'Context Length',
255
 
256
  },
257
 
 
144
  }
145
  }"""),
146
  'suppressSizeToFit': True,
147
+ 'headerTooltip': 'Name of the embedding model being evaluated for retrieval tasks',
148
 
149
  },
150
  {'headerName': "Vendor",
 
152
  'headerClass': 'custom-header-style',
153
  'cellClass': 'custom-cell-style',
154
  # 'suppressSizeToFit': True,
155
+ 'headerTooltip': 'Company or organization that developed and maintains the model',
156
  },
157
  {'headerName': "Overall Score",
158
  'field': avg_column,
159
  'headerClass': 'custom-header-style',
160
  'cellClass': 'custom-cell-style',
161
  # 'suppressSizeToFit': True,
162
+ 'headerTooltip': 'Overall average performance score across all evaluated datasets',
163
 
164
  },
165
 
 
169
  'headerClass': 'custom-header-style',
170
  'cellClass': 'custom-cell-style',
171
  # 'suppressSizeToFit': True,
172
+ 'headerTooltip': 'Average NDCG@10 performance score across publicly available datasets',
173
 
174
  },
175
 
 
178
  'headerClass': 'custom-header-style',
179
  'cellClass': 'custom-cell-style',
180
  # 'suppressSizeToFit': True,
181
+ 'headerTooltip': 'Average NDCG@10 performance score across proprietary/restricted datasets',
182
 
183
  },
184
 
 
188
  'headerClass': 'custom-header-style',
189
  'cellClass': 'custom-cell-style',
190
  # 'suppressSizeToFit': True,
191
+ 'headerTooltip': 'Data type format of the embedding vectors (e.g., float32, int8, binary)',
192
 
193
  },
194
  {
 
209
  }
210
  """
211
  ),
212
+ 'headerTooltip': 'Number of dimensions in the embedding vector representation',
213
 
214
  },
215
  {
 
230
  ),
231
  "width": 120,
232
  # 'suppressSizeToFit': True,
233
+ 'headerTooltip': 'Total number of trainable parameters in the embedding model',
234
 
235
  },
236
  {
 
251
  }
252
  """
253
  ),
254
+ 'headerTooltip': 'Maximum number of tokens the model can process in a single input',
255
 
256
  },
257