Update README with latest bm25 metrics and tokenization strategies
Browse files
README.md
CHANGED
|
@@ -204,12 +204,9 @@ A lightweight, evaluation-ready subset of [CodeSearchNet](https://huggingface.co
|
|
| 204 |
|
| 205 |
## BM25 tokenization strategy
|
| 206 |
|
| 207 |
-
-
|
| 208 |
-
-
|
| 209 |
-
|
| 210 |
-
- `wordseg`: language-specific word segmentation (`ja`, `zh`, `th`, `ko`)
|
| 211 |
-
- `stemmer`: `PyStemmer`
|
| 212 |
-
- `whitespace`: `str.split()`
|
| 213 |
|
| 214 |
Selected strategy by split:
|
| 215 |
|
|
@@ -229,4 +226,4 @@ Selected strategy by split:
|
|
| 229 |
|
| 230 |
## License
|
| 231 |
|
| 232 |
-
Other. This dataset is derived from CodeSearchNet and follows upstream repository licensing and attribution requirements.
|
|
|
|
| 204 |
|
| 205 |
## BM25 tokenization strategy
|
| 206 |
|
| 207 |
+
- `bm25` was generated with `--auto-select-best-splitter`.
|
| 208 |
+
- Candidate strategies: `transformer`, `stemmer`, `wordseg`, `nltk_stem`, `nltk_stem_stop`, `english_regex`, `english_porter`, `english_porter_stop`, `whitespace`.
|
| 209 |
+
- Selection metric: best `nDCG@100` per split.
|
|
|
|
|
|
|
|
|
|
| 210 |
|
| 211 |
Selected strategy by split:
|
| 212 |
|
|
|
|
| 226 |
|
| 227 |
## License
|
| 228 |
|
| 229 |
+
Other. This dataset is derived from CodeSearchNet and follows upstream repository licensing and attribution requirements.
|