Commit
•
6291c54
1
Parent(s):
f256e74
Revert addition of data files (#9)
Browse files- Revert "add data files (#8)" (50f55e16859f2815a79532f56bc345805c0f6c41)
- Delete dataset_infos.json (8f31dd4fdd89365b7a4ba4ace8bc3f256eb330fd)
- Disable dataset viewer (45cb3670bb1d2256ab64aae560fdc5b3e0b11d4a)
- Add defunct disclaimer to dataset card (5e0a3f4e69c320a1ade094439dc55e7f059d07ac)
- Add the (501e9f32b14943cfa5c5acfbbf074314f38f8dec)
- .gitattributes +0 -6
- README.md +5 -0
- amazon_reviews_multi.py +1 -1
- json/dev/dataset_de_dev.json +0 -0
- json/dev/dataset_en_dev.json +0 -0
- json/dev/dataset_es_dev.json +0 -0
- json/dev/dataset_fr_dev.json +0 -0
- json/dev/dataset_ja_dev.json +0 -0
- json/dev/dataset_zh_dev.json +0 -0
- json/test/dataset_de_test.json +0 -0
- json/test/dataset_en_test.json +0 -0
- json/test/dataset_es_test.json +0 -0
- json/test/dataset_fr_test.json +0 -0
- json/test/dataset_ja_test.json +0 -0
- json/test/dataset_zh_test.json +0 -0
- json/train/dataset_de_train.json +0 -3
- json/train/dataset_en_train.json +0 -3
- json/train/dataset_es_train.json +0 -3
- json/train/dataset_fr_train.json +0 -3
- json/train/dataset_ja_train.json +0 -3
- json/train/dataset_zh_train.json +0 -3
.gitattributes
CHANGED
@@ -25,9 +25,3 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
28 |
-
json/train/dataset_de_train.json filter=lfs diff=lfs merge=lfs -text
|
29 |
-
json/train/dataset_en_train.json filter=lfs diff=lfs merge=lfs -text
|
30 |
-
json/train/dataset_es_train.json filter=lfs diff=lfs merge=lfs -text
|
31 |
-
json/train/dataset_fr_train.json filter=lfs diff=lfs merge=lfs -text
|
32 |
-
json/train/dataset_ja_train.json filter=lfs diff=lfs merge=lfs -text
|
33 |
-
json/train/dataset_zh_train.json filter=lfs diff=lfs merge=lfs -text
|
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
README.md
CHANGED
@@ -253,6 +253,7 @@ config_names:
|
|
253 |
- fr
|
254 |
- ja
|
255 |
- zh
|
|
|
256 |
---
|
257 |
|
258 |
# Dataset Card for The Multilingual Amazon Reviews Corpus
|
@@ -297,6 +298,10 @@ config_names:
|
|
297 |
|
298 |
### Dataset Summary
|
299 |
|
|
|
|
|
|
|
|
|
300 |
We provide an Amazon product reviews dataset for multilingual text classification. The dataset contains reviews in English, Japanese, German, French, Chinese and Spanish, collected between November 1, 2015 and November 1, 2019. Each record in the dataset contains the review text, the review title, the star rating, an anonymized reviewer ID, an anonymized product ID and the coarse-grained product category (e.g. ‘books’, ‘appliances’, etc.) The corpus is balanced across stars, so each star rating constitutes 20% of the reviews in each language.
|
301 |
|
302 |
For each language, there are 200,000, 5,000 and 5,000 reviews in the training, development and test sets respectively. The maximum number of reviews per reviewer is 20 and the maximum number of reviews per product is 20. All reviews are truncated after 2,000 characters, and all reviews are at least 20 characters long.
|
|
|
253 |
- fr
|
254 |
- ja
|
255 |
- zh
|
256 |
+
viewer: false
|
257 |
---
|
258 |
|
259 |
# Dataset Card for The Multilingual Amazon Reviews Corpus
|
|
|
298 |
|
299 |
### Dataset Summary
|
300 |
|
301 |
+
<div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400">
|
302 |
+
<p><b>Defunct:</b> Dataset "amazon_reviews_multi" is defunct and no longer accessible due to the decision of data providers.</p>
|
303 |
+
</div>
|
304 |
+
|
305 |
We provide an Amazon product reviews dataset for multilingual text classification. The dataset contains reviews in English, Japanese, German, French, Chinese and Spanish, collected between November 1, 2015 and November 1, 2019. Each record in the dataset contains the review text, the review title, the star rating, an anonymized reviewer ID, an anonymized product ID and the coarse-grained product category (e.g. ‘books’, ‘appliances’, etc.) The corpus is balanced across stars, so each star rating constitutes 20% of the reviews in each language.
|
306 |
|
307 |
For each language, there are 200,000, 5,000 and 5,000 reviews in the training, development and test sets respectively. The maximum number of reviews per reviewer is 20 and the maximum number of reviews per product is 20. All reviews are truncated after 2,000 characters, and all reviews are at least 20 characters long.
|
amazon_reviews_multi.py
CHANGED
@@ -55,7 +55,7 @@ _LANGUAGES = {
|
|
55 |
_ALL_LANGUAGES = "all_languages"
|
56 |
_VERSION = "1.0.0"
|
57 |
_HOMEPAGE_URL = "https://registry.opendata.aws/amazon-reviews-ml/"
|
58 |
-
_DOWNLOAD_URL = "json/{split}/dataset_{lang}_{split}.json"
|
59 |
|
60 |
|
61 |
class AmazonReviewsMultiConfig(datasets.BuilderConfig):
|
|
|
55 |
_ALL_LANGUAGES = "all_languages"
|
56 |
_VERSION = "1.0.0"
|
57 |
_HOMEPAGE_URL = "https://registry.opendata.aws/amazon-reviews-ml/"
|
58 |
+
_DOWNLOAD_URL = "https://amazon-reviews-ml.s3-us-west-2.amazonaws.com/json/{split}/dataset_{lang}_{split}.json"
|
59 |
|
60 |
|
61 |
class AmazonReviewsMultiConfig(datasets.BuilderConfig):
|
json/dev/dataset_de_dev.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/dev/dataset_en_dev.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/dev/dataset_es_dev.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/dev/dataset_fr_dev.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/dev/dataset_ja_dev.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/dev/dataset_zh_dev.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/test/dataset_de_test.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/test/dataset_en_test.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/test/dataset_es_test.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/test/dataset_fr_test.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/test/dataset_ja_test.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/test/dataset_zh_test.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
json/train/dataset_de_train.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:b06e094ce628b3c2f31ae3a44342a68317d741d279de99b0fc1ffff8fef72041
|
3 |
-
size 84307113
|
|
|
|
|
|
|
|
json/train/dataset_en_train.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:09076539f9c2ff6804e993420910ebc7aca6288faf85d1e72a08df3bbbef1326
|
3 |
-
size 78419238
|
|
|
|
|
|
|
|
json/train/dataset_es_train.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:8699ffd2714133fef1dcafdc870dc53b56780e4ed66ac82bee82126a84346ac5
|
3 |
-
size 72182745
|
|
|
|
|
|
|
|
json/train/dataset_fr_train.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:512bdcf01f768dc4e2979fba10aad0c113b7224351d3327604349d6957c7bb7a
|
3 |
-
size 74407776
|
|
|
|
|
|
|
|
json/train/dataset_ja_train.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:ee67134096b72099ed7ed1cbe6ff6f06c57216c5c38ed75c2f47378c16fd4785
|
3 |
-
size 102204957
|
|
|
|
|
|
|
|
json/train/dataset_zh_train.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:a2c33085c146caf15a42a4e71149d25bd00f5f771f1ef8fb3c70d00c9b2a4954
|
3 |
-
size 71748937
|
|
|
|
|
|
|
|