Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- msmarco
|
| 5 |
+
- pretokenized
|
| 6 |
+
- glove
|
| 7 |
+
- cl100k
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# MS MARCO triplet-50 pre-tokenized for `jsanzolac/drifting-glove-distilled-r300`
|
| 11 |
+
|
| 12 |
+
Pre-tokenized from `sentence-transformers/msmarco-msmarco-distilbert-base-v3` (subset `triplet-50`).
|
| 13 |
+
Each row: query, positive passage, and up to 50 mined hard negatives, all encoded with
|
| 14 |
+
`tiktoken.cl100k_base` and mapped to GloVe row indices via `jsanzolac/drifting-glove-distilled-r300/glove_vocab.txt`.
|
| 15 |
+
|
| 16 |
+
**Schema:**
|
| 17 |
+
- `query_ids: list[int32]` — GloVe row indices, length ≤ 256
|
| 18 |
+
- `positive_ids: list[int32]` — length ≤ 256, ≥ 8
|
| 19 |
+
- `neg_ids: list[list[int32]]` — variable length per row, each negative ≥ 8
|
| 20 |
+
|
| 21 |
+
**Filter rules:**
|
| 22 |
+
- Row dropped if query is empty (after OOV drop) or positive < 8 tokens.
|
| 23 |
+
- Negatives < 8 tokens are dropped from the row's negative list (row kept).
|
| 24 |
+
|
| 25 |
+
**Counts:** `rows_in = 278737`, `rows_kept = 278737` (100.00%).
|
| 26 |
+
|
| 27 |
+
See `preprocessing_stats.json` for length distributions.
|