mteb 2.1.12__py3-none-any.whl → 2.1.14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mteb/leaderboard/app.py +4 -2
- mteb/models/model_implementations/voyage_v.py +1 -0
- {mteb-2.1.12.dist-info → mteb-2.1.14.dist-info}/METADATA +1 -1
- {mteb-2.1.12.dist-info → mteb-2.1.14.dist-info}/RECORD +8 -8
- {mteb-2.1.12.dist-info → mteb-2.1.14.dist-info}/WHEEL +0 -0
- {mteb-2.1.12.dist-info → mteb-2.1.14.dist-info}/entry_points.txt +0 -0
- {mteb-2.1.12.dist-info → mteb-2.1.14.dist-info}/licenses/LICENSE +0 -0
- {mteb-2.1.12.dist-info → mteb-2.1.14.dist-info}/top_level.txt +0 -0
mteb/leaderboard/app.py
CHANGED
|
@@ -107,7 +107,9 @@ def _update_description(
|
|
|
107
107
|
description += f" - **Number of task types**: {n_task_types}\n"
|
|
108
108
|
description += f" - **Number of domains**: {n_domains}\n"
|
|
109
109
|
if benchmark.reference is not None:
|
|
110
|
-
description +=
|
|
110
|
+
description += (
|
|
111
|
+
f'\n<a href="{benchmark.reference}" target="_blank">Click for More Info</a>'
|
|
112
|
+
)
|
|
111
113
|
|
|
112
114
|
return description
|
|
113
115
|
|
|
@@ -137,7 +139,7 @@ def _update_task_info(task_names: str) -> gr.DataFrame:
|
|
|
137
139
|
df["languages"] = df["languages"].map(_format_list)
|
|
138
140
|
df = df.sort_values("name")
|
|
139
141
|
df["domains"] = df["domains"].map(_format_list)
|
|
140
|
-
df["name"] = "
|
|
142
|
+
df["name"] = f'<a href="{df["reference"]}" target="_blank">{df["name"]}</a>'
|
|
141
143
|
df["modalities"] = df["modalities"].map(_format_list)
|
|
142
144
|
df = df.rename(
|
|
143
145
|
columns={
|
|
@@ -149,6 +149,7 @@ def voyage_v_loader(model_name, **kwargs):
|
|
|
149
149
|
show_progress_bar: bool = True,
|
|
150
150
|
**kwargs: Any,
|
|
151
151
|
) -> Array:
|
|
152
|
+
input_type = "document" # default
|
|
152
153
|
if prompt_type is not None:
|
|
153
154
|
if prompt_type == PromptType.document:
|
|
154
155
|
input_type = "document"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mteb
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.14
|
|
4
4
|
Summary: Massive Text Embedding Benchmark
|
|
5
5
|
Author-email: MTEB Contributors <niklas@huggingface.co>, Kenneth Enevoldsen <kenneth.enevoldsen@cas.au.dk>, Nouamane Tazi <nouamane@huggingface.co>, Nils Reimers <info@nils-reimers.de>
|
|
6
6
|
Maintainer-email: Kenneth Enevoldsen <kenneth.enevoldsen@cas.au.dk>, Roman Solomatin <risolomatin@gmail.com>, Isaac Chung <chungisaac1217@gmail.com>
|
|
@@ -1422,7 +1422,7 @@ mteb/languages/language_family.json,sha256=OUGcHeOIPcZPb2FWmYLhxTS0JxjK5y3Fo6x0P
|
|
|
1422
1422
|
mteb/languages/language_scripts.py,sha256=5wix9HTYolNIpTiS5oXf2pGJyL7ftdGKs_m432w81V8,3998
|
|
1423
1423
|
mteb/languages/programming_languages.py,sha256=zxAakT3OSUnAuTnQ34VyeFIECnNXMlleZmAake6jsZE,211
|
|
1424
1424
|
mteb/leaderboard/__init__.py,sha256=991roXmtRwEQysV-37hWEzWpkvPgMCGRqZTHR-hm2io,88
|
|
1425
|
-
mteb/leaderboard/app.py,sha256=
|
|
1425
|
+
mteb/leaderboard/app.py,sha256=EsQ_qoJ26yJbg2qExKFFAx90R8VYOO6GbLtIzFuHGpE,32642
|
|
1426
1426
|
mteb/leaderboard/benchmark_selector.py,sha256=hnXdo_Kj4UUAruFl6nZkCxAQ88IEfbaH8EADFJMMdVo,7686
|
|
1427
1427
|
mteb/leaderboard/figures.py,sha256=Rq20LFpaUhQD4tuKp7P7ExQtAjonMLibgO3ud0ykMag,7491
|
|
1428
1428
|
mteb/leaderboard/table.py,sha256=qs0H_Gt9FzRvzb-AL0YlqEe0YAsdYsVX3QlncfCBEqg,7828
|
|
@@ -1546,7 +1546,7 @@ mteb/models/model_implementations/vi_vn_models.py,sha256=quWmd3JT2J6SlAsFrV2gcnc
|
|
|
1546
1546
|
mteb/models/model_implementations/vista_models.py,sha256=Q3I01kRtIPaoke0iMIcH4CLcCDTnMSIBFNCof7LPTX4,10832
|
|
1547
1547
|
mteb/models/model_implementations/vlm2vec_models.py,sha256=HGGy_-z9Wc99xOKum71rBNipCPqWcM1efmmXgy5Rvxc,11724
|
|
1548
1548
|
mteb/models/model_implementations/voyage_models.py,sha256=dOCccOQlloGrg0q44PxMQzx8dHuQ8VgkDUD01EydpJ0,19824
|
|
1549
|
-
mteb/models/model_implementations/voyage_v.py,sha256=
|
|
1549
|
+
mteb/models/model_implementations/voyage_v.py,sha256=WnvwYNVv3c5K0ChzGA3v2iTQX2ekXYn_3402H721c6M,8088
|
|
1550
1550
|
mteb/models/model_implementations/xyz_models.py,sha256=TePlrH6EHwRPO87U_J3Yce9-XHCn_X7I2cJ_6BZ2fUY,1296
|
|
1551
1551
|
mteb/models/model_implementations/youtu_models.py,sha256=NB74E6z-_36HyXb8GXKn8CrmRLN68uX9eH4xcS57zl0,5938
|
|
1552
1552
|
mteb/results/__init__.py,sha256=EXQqK4Am5eIYzD52dpcGAFSdqnC38oE6JHN302oidHc,158
|
|
@@ -2554,9 +2554,9 @@ mteb/types/_metadata.py,sha256=NN-W0S6a5TDV7UkpRx1pyWtGF4TyyCyoPUfHOwdeci8,2290
|
|
|
2554
2554
|
mteb/types/_result.py,sha256=CRAUc5IvqI3_9SyXDwv-PWLCXwXdZem9RePeYESRtuw,996
|
|
2555
2555
|
mteb/types/_string_validators.py,sha256=PY-dYq4E8O50VS3bLYdldPWp400fl_WzUjfVSkNWe8U,523
|
|
2556
2556
|
mteb/types/statistics.py,sha256=YwJsxTf1eaCI_RE-J37a-gK5wDeGAsmkeZKoZCFihSo,3755
|
|
2557
|
-
mteb-2.1.
|
|
2558
|
-
mteb-2.1.
|
|
2559
|
-
mteb-2.1.
|
|
2560
|
-
mteb-2.1.
|
|
2561
|
-
mteb-2.1.
|
|
2562
|
-
mteb-2.1.
|
|
2557
|
+
mteb-2.1.14.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
2558
|
+
mteb-2.1.14.dist-info/METADATA,sha256=DoOyy4Av4HUxW86m2yfBFprFzwTBkuezEF1mkrg0IJ4,13574
|
|
2559
|
+
mteb-2.1.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
2560
|
+
mteb-2.1.14.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
|
|
2561
|
+
mteb-2.1.14.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
|
|
2562
|
+
mteb-2.1.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|