randomath commited on
Commit
1e13908
·
verified ·
1 Parent(s): cc4b05d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -120,10 +120,22 @@ configs:
120
  data_files:
121
  - split: train
122
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
123
  ---
124
 
125
  # Amazon Combined Dataset
126
 
 
 
127
  ## Data Fields
128
 
129
  | Field | Type | Explanation |
@@ -143,8 +155,8 @@ configs:
143
  | asin | str | ID of the product. |
144
  | parent_asin | str | Parent ID of the product (should be same as ASIN) |
145
  | bought_together | list | Recommended bundles from the websites. |
146
- | reviews | list[Review] | List of User Reviews, see below. |
147
- | qa_pairs | list[str, list[Answers]] | List with question text and list of Answers, see below. |
148
 
149
  ### For User Reviews
150
 
@@ -188,4 +200,4 @@ configs:
188
  journal={arXiv preprint arXiv:2305.09249},
189
  year={2023}
190
  }
191
- ```
 
120
  data_files:
121
  - split: train
122
  path: data/train-*
123
+ task_categories:
124
+ - text-generation
125
+ - text2text-generation
126
+ - question-answering
127
+ language:
128
+ - en
129
+ tags:
130
+ - qa
131
+ size_categories:
132
+ - 1K<n<10K
133
  ---
134
 
135
  # Amazon Combined Dataset
136
 
137
+ E-commerce dataset that combines metadata, reviews, and sample question/answer pairs
138
+
139
  ## Data Fields
140
 
141
  | Field | Type | Explanation |
 
155
  | asin | str | ID of the product. |
156
  | parent_asin | str | Parent ID of the product (should be same as ASIN) |
157
  | bought_together | list | Recommended bundles from the websites. |
158
+ | reviews | list[[Review](#for-user-reviews)] | List of User Reviews, see below. |
159
+ | qa_pairs | list[str, list[[Answers](#for-answers)]] | List with question text and list of Answers, see below. |
160
 
161
  ### For User Reviews
162
 
 
200
  journal={arXiv preprint arXiv:2305.09249},
201
  year={2023}
202
  }
203
+ ```