PaulBurca2005 commited on
Commit
58f4afb
·
verified ·
1 Parent(s): 3bd9d85

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +16 -8
README.md CHANGED
@@ -30,6 +30,12 @@ configs:
30
  generated with Gemma 3 27B over a merged Romanian corpus and mined for hard
31
  negatives with BM25.
32
 
 
 
 
 
 
 
33
  The column layout follows
34
  [`alina0195/ro-msmarco-divided`](https://huggingface.co/datasets/alina0195/ro-msmarco-divided),
35
  with one column added.
@@ -38,7 +44,7 @@ with one column added.
38
  |---|---|
39
  | `anchor` | the query |
40
  | `positive` | the document the query was generated from |
41
- | `negative` | one BM25-mined hard negative |
42
  | `query_source` | the upstream dataset or outlet the query comes from |
43
 
44
  One row per (query, positive, negative) pair, so a query with four negatives is
@@ -50,13 +56,15 @@ The positive is not retrieved, it is known: every query was generated *from* a
50
  document, so that document is the positive by construction. Retrieval is used
51
  only to mine negatives.
52
 
53
- Candidates come from the BM25 top-100 within the positive's own document type.
54
- A candidate becomes a negative only if it scores in a band relative to the
55
- positive's own score for that query, shares enough of the query's idf mass,
56
- contains one of the query's rarest terms, and is not a near-copy of the positive
57
- or of a negative already picked. The corpus is deduplicated by a near-duplicate
58
- key first, boilerplate is dropped, and self-referential queries ("what does the
59
- article say…") are removed.
 
 
60
 
61
  ## Sources
62
 
 
30
  generated with Gemma 3 27B over a merged Romanian corpus and mined for hard
31
  negatives with BM25.
32
 
33
+ A late-interaction variant of the same triplets is at
34
+ [`PaulBurca2005/ro-retrieval-triplets-late-interaction`](https://huggingface.co/datasets/PaulBurca2005/ro-retrieval-triplets-late-interaction).
35
+ The two are close to disjoint - over the queries both contain, mean Jaccard
36
+ overlap between their negative sets is 0.053 and 73% share no negative at
37
+ all - so training on the union exposes a model to both failure modes.
38
+
39
  The column layout follows
40
  [`alina0195/ro-msmarco-divided`](https://huggingface.co/datasets/alina0195/ro-msmarco-divided),
41
  with one column added.
 
44
  |---|---|
45
  | `anchor` | the query |
46
  | `positive` | the document the query was generated from |
47
+ | `negative` | one hard negative, mined by BM25 |
48
  | `query_source` | the upstream dataset or outlet the query comes from |
49
 
50
  One row per (query, positive, negative) pair, so a query with four negatives is
 
56
  document, so that document is the positive by construction. Retrieval is used
57
  only to mine negatives.
58
 
59
+ Candidates come from the BM25 top-100 within the positive's own
60
+ document type. A candidate becomes a negative only if it scores in a band
61
+ relative to the positive's own score for that query, shares enough of the
62
+ query's idf mass, contains one of the query's rarest terms, and is not a
63
+ near-copy of the positive or of a negative already picked.
64
+
65
+ The corpus is deduplicated by a near-duplicate key first, boilerplate is
66
+ dropped, and self-referential queries ("what does the article say…") are
67
+ removed - identically in both variants, so the two are comparable.
68
 
69
  ## Sources
70