Datasets:

Modalities:
Tabular
Text
Formats:
csv
Libraries:
Datasets
pandas
License:
nielsr HF Staff commited on
Commit
75109a6
·
verified ·
1 Parent(s): c0a61bd

Improve dataset card: Add metadata, links to paper, project, code, and usage guidance

Browse files

This PR enhances the `ClueWeb-Reco` dataset card by:
- Adding `task_categories: ['text-retrieval', 'recommendation']` and `tags: ['recommender-systems', 'webpage-recommendation']` to the metadata for improved discoverability.
- Including direct links to the associated paper (https://huggingface.co/papers/2510.26095), project page (https://www.open-reco-bench.ai), and GitHub repository (https://github.com/cxcscmu/RecSys-Benchmark) in the content.
- Restructuring the introductory text for better clarity and context.
- Converting the "Utility files" section into a "Sample Usage" guide, explaining how to use the provided `ClueWeb22Api.py` and `example_dataset.py` for data loading without fabricating code snippets.
- Removing a commented-out YAML block from the Markdown content.

These changes provide more comprehensive information about the dataset and its usage, aligning with Hugging Face Hub best practices.

Files changed (1) hide show
  1. README.md +25 -35
README.md CHANGED
@@ -1,48 +1,36 @@
1
  ---
 
 
 
 
 
 
 
2
  configs:
3
  - config_name: input
4
  data_files:
5
  - split: valid
6
  path:
7
- - "interaction_splits/valid_inter_input.tsv"
8
  - split: test
9
- path:
10
- - "interaction_splits/test_inter_input.tsv"
11
  default: true
12
- - config_name: target
13
  data_files:
14
  - split: valid
15
  path:
16
- - "interaction_splits/valid_inter_target.tsv"
17
- - config_name: mapping
18
- data_files: "cwid_to_id.tsv"
19
- license: mit
20
  ---
21
 
 
22
 
23
- <!-- configs:
24
- - config_name: ordered_id_splits
25
- data_files:
26
- - split: train
27
- path:
28
- - "ordered_id_splits/valid_input.tsv"
29
- - "ordered_id_splits/valid_target.tsv"
30
- - split: test
31
- path: "ordered_id_splits/test_input.tsv"
32
- default: true
33
- - config_name: interaction_splits
34
- data_files:
35
- - split: valid
36
- path:
37
- - "interaction_splits/valid_inter_input.tsv"
38
- - "interaction_splits/valid_inter_target.csv"
39
- - split: test
40
- path: "interaction_splits/test_input.tsv"
41
- - config_name: clueweb_id_mapping
42
- data_files: "cwid_to_id.tsv" -->
43
-
44
 
45
- # ClueWeb-Reco:
 
46
 
47
  ## ClueWeb-Reco as Webpage Recommendation Hidden Test
48
  ClueWeb-Reco is a dataset constructed by mapping real-life U.S. browsing history to publicly available websites in the English subset of [ClueWeb22-B](https://lemurproject.org/clueweb22/) dataset.
@@ -75,10 +63,12 @@ We provide input and ground truth for the validation set. The target of the test
75
  - valid_target.tsv: validation dataset ground truth
76
  - test_input.tsv: input for testing dataset (ground truth hidden)
77
 
78
- ## Utility files for ClueWebApi usage and example processing on the ordered ClueWeb id list format
79
- - cw_data_processing:
80
- - ClueWeb22Api.py: API to retrieve ClueWeb document information from official ClueWeb22 docids
81
- - example_dataset.py: example to load input data sequences with ClueWeb22Api
 
 
82
 
83
  ## Note
84
- The ClueWeb-Reco dataset was collected, stored, released, and is maintained by our team at Carnegie Mellon University.
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - text-retrieval
5
+ - recommendation
6
+ tags:
7
+ - recommender-systems
8
+ - webpage-recommendation
9
  configs:
10
  - config_name: input
11
  data_files:
12
  - split: valid
13
  path:
14
+ - interaction_splits/valid_inter_input.tsv
15
  - split: test
16
+ path:
17
+ - interaction_splits/test_inter_input.tsv
18
  default: true
19
+ - config_name: target
20
  data_files:
21
  - split: valid
22
  path:
23
+ - interaction_splits/valid_inter_target.tsv
24
+ - config_name: mapping
25
+ data_files: cwid_to_id.tsv
 
26
  ---
27
 
28
+ # ClueWeb-Reco Dataset
29
 
30
+ This dataset is part of the [ORBIT - Open Recommendation Benchmark for Reproducible Research with Hidden Tests](https://huggingface.co/papers/2510.26095) paper.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
+ Project page: https://www.open-reco-bench.ai
33
+ Code: https://github.com/cxcscmu/RecSys-Benchmark
34
 
35
  ## ClueWeb-Reco as Webpage Recommendation Hidden Test
36
  ClueWeb-Reco is a dataset constructed by mapping real-life U.S. browsing history to publicly available websites in the English subset of [ClueWeb22-B](https://lemurproject.org/clueweb22/) dataset.
 
63
  - valid_target.tsv: validation dataset ground truth
64
  - test_input.tsv: input for testing dataset (ground truth hidden)
65
 
66
+ ## Sample Usage
67
+ The repository provides utility files in the `cw_data_processing` folder for interacting with the ClueWeb-Reco dataset:
68
+ - `ClueWeb22Api.py`: An API to retrieve ClueWeb document information from official ClueWeb22 docids.
69
+ - `example_dataset.py`: An example script to load input data sequences using the `ClueWeb22Api`.
70
+
71
+ You can refer to these files within the GitHub repository (linked above) for detailed examples on how to load and process the dataset.
72
 
73
  ## Note
74
+ The ClueWeb-Reco dataset was collected, stored, released, and is maintained by our team at Carnegie Mellon University.