Spaces:
Running
Running
Embd Dtype as last fix column
#24
by
fzoll
- opened
app/backend/multi_header_util.py
CHANGED
@@ -200,15 +200,6 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
|
|
200 |
|
201 |
},
|
202 |
|
203 |
-
{
|
204 |
-
'headerName': 'Embd Dtype',
|
205 |
-
'field': 'embd_dtype',
|
206 |
-
'headerClass': 'custom-header-style',
|
207 |
-
'cellClass': 'custom-cell-style',
|
208 |
-
# 'suppressSizeToFit': True,
|
209 |
-
'headerTooltip': 'Data type format of the embedding vectors (e.g., float32, int8, binary)',
|
210 |
-
|
211 |
-
},
|
212 |
{
|
213 |
'headerName': 'Embd Dim',
|
214 |
'field': 'embd_dim',
|
@@ -271,6 +262,15 @@ def get_header_options(column_list: list, avg_column: str, is_section: bool):
|
|
271 |
),
|
272 |
'headerTooltip': 'Maximum number of tokens the model can process in a single input',
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
},
|
275 |
|
276 |
*mutil_header_options(column_list, avg_column, is_section)
|
|
|
200 |
|
201 |
},
|
202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
{
|
204 |
'headerName': 'Embd Dim',
|
205 |
'field': 'embd_dim',
|
|
|
262 |
),
|
263 |
'headerTooltip': 'Maximum number of tokens the model can process in a single input',
|
264 |
|
265 |
+
},
|
266 |
+
{
|
267 |
+
'headerName': 'Embd Dtype',
|
268 |
+
'field': 'embd_dtype',
|
269 |
+
'headerClass': 'custom-header-style',
|
270 |
+
'cellClass': 'custom-cell-style',
|
271 |
+
# 'suppressSizeToFit': True,
|
272 |
+
'headerTooltip': 'Data type format of the embedding vectors (e.g., float32, int8, binary)',
|
273 |
+
|
274 |
},
|
275 |
|
276 |
*mutil_header_options(column_list, avg_column, is_section)
|