Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
config_name: pair
|
4 |
features:
|
@@ -18,3 +30,24 @@ configs:
|
|
18 |
- split: train
|
19 |
path: pair/train-*
|
20 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
multilinguality:
|
5 |
+
- monolingual
|
6 |
+
size_categories:
|
7 |
+
- 10M<n<100M
|
8 |
+
task_categories:
|
9 |
+
- feature-extraction
|
10 |
+
- sentence-similarity
|
11 |
+
pretty_name: Amazon Reviews 2018
|
12 |
+
tags:
|
13 |
+
- sentence-transformers
|
14 |
dataset_info:
|
15 |
config_name: pair
|
16 |
features:
|
|
|
30 |
- split: train
|
31 |
path: pair/train-*
|
32 |
---
|
33 |
+
|
34 |
+
# Dataset Card for Amazon Reviews 2018
|
35 |
+
|
36 |
+
This dataset is a collection of title-review pairs collected from Amazon, as collected in [Ni et al.](https://cseweb.ucsd.edu//~jmcauley/pdfs/emnlp19a.pdf). See [Amazon Reviews 2018](https://nijianmo.github.io/amazon/index.html) for additional information.
|
37 |
+
This dataset can be used directly with Sentence Transformers to train embedding models.
|
38 |
+
|
39 |
+
## Dataset Subsets
|
40 |
+
|
41 |
+
### `pair` subset
|
42 |
+
|
43 |
+
* Columns: "title", "review"
|
44 |
+
* Column types: `str`, `str`
|
45 |
+
* Examples:
|
46 |
+
```python
|
47 |
+
{
|
48 |
+
'title': "It doesn't fit my machine. I can't seem to ...",
|
49 |
+
'review': "It doesn't fit my machine. I can't seem to find the part for the Mr. Coffee Tea maker I have.",
|
50 |
+
}
|
51 |
+
```
|
52 |
+
* Collection strategy: Reading the Amazon Reviews 2018 dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data).
|
53 |
+
* Deduplified: No
|