warre-veys commited on
Commit
d1de594
·
verified ·
1 Parent(s): 9631205

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -20
README.md CHANGED
@@ -33,42 +33,69 @@ against the ESCO v1.1.0 skill taxonomy. Layout follows the
33
  [BEIR](https://github.com/beir-cellar/beir) convention so it is drop-in for
34
  MTEB-style retrieval evaluators.
35
 
 
 
36
  ## Configs
37
 
38
- | config | rows | columns |
39
- |---|---:|---|
40
- | `queries` | 50 | `_id` (query id), `text` (ESCO alt-label / surface term to normalise) |
41
- | `corpus` | 13,891 | `_id` (ESCO skill URI), `title` (English preferred label), `text` (English description), `esco_version` |
42
- | `qrels` | 694,550 | `query-id`, `corpus-id`, `score` (0-4) |
 
 
 
 
 
 
 
 
 
43
 
44
- ### Score scale
 
 
 
 
 
 
45
 
46
- | score | meaning |
47
- |---:|---|
48
- | | 0 | 665,668 |
49
- | 1 | 28,438 |
50
- | 2 | 312 |
51
- | 3 | 58 |
52
- | 4 | 74 |
53
 
54
- Higher is more relevant. **Every query has one row per ESCO v1.1.0
55
- skill (13,891 rows per query).**
 
 
 
 
 
56
 
57
- ## Test split
58
 
59
- A `test` split is now available (450 queries, 450 qrels rows).
 
 
 
 
 
 
 
 
 
60
 
61
- Unlike the `validation` split, the test split is **not yet fully graded** (0-4). Its relevance labels are **real but binary**: `score = 1` marks a genuinely relevant target (derived from the public non-graded ground truths), and every pair not listed is implicit grade 0. The fine-grained 0-4 graded annotations for the test split are withheld during the ongoing RecSys-HR challenge (see [`WorkRB website`](https://techwolf-ai.github.io/workrb-site/challenges/recsys-hr-2026.html)) and will be released afterwards. S
62
 
63
  ## Attribution
64
 
65
  This dataset uses the ESCO classification of the European Commission
66
  (ESCO v1.1.0, <https://esco.ec.europa.eu>), licensed under
67
- [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). The ESCO content
68
- has been extracted into a tabular subset (skill URI, English preferred label,
69
  English description); no semantic modifications were made. The European
70
  Commission is not responsible for any use of the data.
71
 
72
  Source queries come from
73
  [`ESCO v1.1.0 skill-normalisation pairs`](https://esco.ec.europa.eu)
74
  (also CC BY 4.0). The judge labels themselves are released under CC BY 4.0.
 
 
 
 
33
  [BEIR](https://github.com/beir-cellar/beir) convention so it is drop-in for
34
  MTEB-style retrieval evaluators.
35
 
36
+ This dataset was created for the RecSys-HR 2026 WorkRB challenge.
37
+
38
  ## Configs
39
 
40
+ | config | split | rows | columns |
41
+ |---|---|---:|---|
42
+ | `queries` | `validation` | 50 | `_id` (query id), `text` (ESCO alt-label / surface term to normalise) |
43
+ | `queries` | `test` | 450 | `_id` (query id), `text` (ESCO alt-label / surface term to normalise) |
44
+ | `corpus` | `corpus` | 13,891 | `_id` (ESCO skill URI), `title` (English preferred label), `text` (English description), `esco_version` |
45
+ | `qrels` | `validation` | 694,550 | `query-id`, `corpus-id`, `score` (0-4) |
46
+ | `qrels` | `test` | 6,250,950 | `query-id`, `corpus-id`, `score` (0-4) |
47
+
48
+ Higher is more relevant. **The corpus is the COMPLETE ESCO v1.1.0 skill
49
+ list (13,891 skills)** The qrels are the full query x corpus grid:
50
+ every query is scored against all 13,891 skills, with score 0 for any skill
51
+ that was not surfaced as relevant.
52
+
53
+ ### Score scale, `validation` split
54
 
55
+ | score | volume | meaning |
56
+ |---:|---:|---|
57
+ | 0 | 665,668 | The skill is totally unrelated to the query. |
58
+ | 1 | 28,438 | The skill's domain is correct. It's a plausible skill in a broader context, but not mentioned in this query. |
59
+ | 2 | 312 | The skill could be recommended, but its granularity makes it not core to the query. |
60
+ | 3 | 58 | The skill is strongly relevant for this query, although it is more implied than explicitly demonstrated. |
61
+ | 4 | 74 | The skill is explicitly demonstrated or requested by the query, and is therefore a clearly correct recommendation. |
62
 
63
+ ### Score scale, `test` split
 
 
 
 
 
 
64
 
65
+ | score | volume | meaning |
66
+ |---:|---:|---|
67
+ | 0 | 5,989,638 | The skill is totally unrelated to the query. |
68
+ | 1 | 257,118 | The skill's domain is correct. It's a plausible skill in a broader context, but not mentioned in this query. |
69
+ | 2 | 2,723 | The skill could be recommended, but its granularity makes it not core to the query. |
70
+ | 3 | 966 | The skill is strongly relevant for this query, although it is more implied than explicitly demonstrated. |
71
+ | 4 | 505 | The skill is explicitly demonstrated or requested by the query, and is therefore a clearly correct recommendation. |
72
 
73
+ ## Usage
74
 
75
+ ```python
76
+ from datasets import load_dataset
77
+
78
+ queries = load_dataset("TechWolf/Skill-normalisation-ESCO-graded", "queries", split="test")
79
+ corpus = load_dataset("TechWolf/Skill-normalisation-ESCO-graded", "corpus", split="corpus")
80
+ qrels = load_dataset("TechWolf/Skill-normalisation-ESCO-graded", "qrels", split="test")
81
+ ```
82
+
83
+ Join on ids: `qrels["query-id"]` matches `queries["_id"]`, and
84
+ `qrels["corpus-id"]` matches `corpus["_id"]` (a full ESCO skill URI).
85
 
 
86
 
87
  ## Attribution
88
 
89
  This dataset uses the ESCO classification of the European Commission
90
  (ESCO v1.1.0, <https://esco.ec.europa.eu>), licensed under
91
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). The ESCO content has
92
+ been extracted into a tabular subset (skill URI, English preferred label,
93
  English description); no semantic modifications were made. The European
94
  Commission is not responsible for any use of the data.
95
 
96
  Source queries come from
97
  [`ESCO v1.1.0 skill-normalisation pairs`](https://esco.ec.europa.eu)
98
  (also CC BY 4.0). The judge labels themselves are released under CC BY 4.0.
99
+
100
+ ## Citation
101
+ To be announced