Add BM25 nDCG@10 to model results table and note bm25 subset
Browse files
README.md
CHANGED
|
@@ -168,7 +168,7 @@ configs:
|
|
| 168 |
---
|
| 169 |
|
| 170 |
|
| 171 |
-
# NanoCodeSearchNet
|
| 172 |
|
| 173 |
A tiny, evaluation-ready slice of [CodeSearchNet](https://huggingface.co/datasets/code-search-net/code_search_net) (test set) that mirrors the spirit of [NanoBEIR](https://huggingface.co/collections/zeta-alpha-ai/nanobeir): same task, same style, but dramatically smaller so you can iterate and benchmark in minutes instead of hours.
|
| 174 |
|
|
@@ -178,8 +178,11 @@ Evaluation can be performed during and after training by integrating with Senten
|
|
| 178 |
|
| 179 |
NanoCodeSearchNet Evaluation (NDCG@10)
|
| 180 |
|
|
|
|
|
|
|
| 181 |
| Model | avg | Go | Java | JavaScript | PHP | Python | Ruby |
|
| 182 |
|---|---:|---:|---:|---:|---:|---:|---:|
|
|
|
|
| 183 |
| e5-small | 0.7268 | 0.6805 | 0.7884 | 0.6386 | 0.6603 | 0.9142 | 0.6788 |
|
| 184 |
| e5-large | 0.7836 | 0.7595 | 0.8287 | 0.6942 | 0.7291 | 0.9513 | 0.7391 |
|
| 185 |
| bge-m3 | 0.7107 | 0.6643 | 0.6934 | 0.6138 | 0.6229 | 0.9852 | 0.6844 |
|
|
|
|
| 168 |
---
|
| 169 |
|
| 170 |
|
| 171 |
+
# NanoCodeSearchNet (with bm25 subset)
|
| 172 |
|
| 173 |
A tiny, evaluation-ready slice of [CodeSearchNet](https://huggingface.co/datasets/code-search-net/code_search_net) (test set) that mirrors the spirit of [NanoBEIR](https://huggingface.co/collections/zeta-alpha-ai/nanobeir): same task, same style, but dramatically smaller so you can iterate and benchmark in minutes instead of hours.
|
| 174 |
|
|
|
|
| 178 |
|
| 179 |
NanoCodeSearchNet Evaluation (NDCG@10)
|
| 180 |
|
| 181 |
+
A `bm25` subset is included for first-stage retrieval and reranking experiments.
|
| 182 |
+
|
| 183 |
| Model | avg | Go | Java | JavaScript | PHP | Python | Ruby |
|
| 184 |
|---|---:|---:|---:|---:|---:|---:|---:|
|
| 185 |
+
| bm25 | 0.4295 | 0.3644 | 0.3952 | 0.3308 | 0.2311 | 0.9552 | 0.3005 |
|
| 186 |
| e5-small | 0.7268 | 0.6805 | 0.7884 | 0.6386 | 0.6603 | 0.9142 | 0.6788 |
|
| 187 |
| e5-large | 0.7836 | 0.7595 | 0.8287 | 0.6942 | 0.7291 | 0.9513 | 0.7391 |
|
| 188 |
| bge-m3 | 0.7107 | 0.6643 | 0.6934 | 0.6138 | 0.6229 | 0.9852 | 0.6844 |
|