napsternxg
commited on
Commit
•
4f3ddfe
1
Parent(s):
f60bd9f
Update README.md
Browse files
README.md
CHANGED
@@ -45,7 +45,7 @@ dataset_info:
|
|
45 |
num_bytes: 110348975.77567595
|
46 |
num_examples: 46690
|
47 |
download_size: 212373125
|
48 |
-
dataset_size: 551740152
|
49 |
configs:
|
50 |
- config_name: default
|
51 |
data_files:
|
@@ -55,4 +55,43 @@ configs:
|
|
55 |
path: data/dev-*
|
56 |
- split: test
|
57 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
num_bytes: 110348975.77567595
|
46 |
num_examples: 46690
|
47 |
download_size: 212373125
|
48 |
+
dataset_size: 551740152
|
49 |
configs:
|
50 |
- config_name: default
|
51 |
data_files:
|
|
|
55 |
path: data/dev-*
|
56 |
- split: test
|
57 |
path: data/test-*
|
58 |
+
license: mit
|
59 |
+
task_categories:
|
60 |
+
- sentence-similarity
|
61 |
+
- text-classification
|
62 |
+
language:
|
63 |
+
- en
|
64 |
+
size_categories:
|
65 |
+
- 100K<n<1M
|
66 |
---
|
67 |
+
|
68 |
+
# WANDS - Wayfair ANnotation Dataset: Dataset for product search relevance assessment
|
69 |
+
|
70 |
+
- Original source of the data is: https://github.com/wayfair/WANDS
|
71 |
+
- Train, dev, test split of 3:1:1 as per footnote 5 in https://arxiv.org/abs/2307.00370
|
72 |
+
|
73 |
+
## Details
|
74 |
+
|
75 |
+
* 42,994 candidate products
|
76 |
+
* 480 queries
|
77 |
+
* 233,448 (query,product) relevance judgements
|
78 |
+
|
79 |
+
## Column details
|
80 |
+
|
81 |
+
* Product columns:
|
82 |
+
* product_id - ID of a product
|
83 |
+
* product_name - String of product name
|
84 |
+
* product_class - Category which product falls under
|
85 |
+
* category_hierarchy - Parent categories of product, delimited by ```/```
|
86 |
+
* product_description - String description of product
|
87 |
+
* product_features - ```|``` delimited string of attribute:value pairs which describe the product
|
88 |
+
* rating_count - Number of user ratings for product
|
89 |
+
* average_rating - Average rating the product received
|
90 |
+
* review_count - Number of user reviews for product
|
91 |
+
* Search queries columns:
|
92 |
+
* query_id - unique ID for each query
|
93 |
+
* query - query string
|
94 |
+
* query_class - category to which the query falls under
|
95 |
+
* Annotated (product,relevance judgement) pairs, columns:
|
96 |
+
* id - Unique ID for each annotation
|
97 |
+
* label - Relevance label, one of 'Exact', 'Partial', or 'Irrelevant'
|