Datasets:
Commit
·
37650ab
1
Parent(s):
0d9e574
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
# For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
|
3 |
+
# Doc / guide: https://huggingface.co/docs/hub/datasets-cards
|
4 |
+
{}
|
5 |
+
---
|
6 |
+
|
7 |
+
# Dataset Card for Dataset Name
|
8 |
+
|
9 |
+
## Dataset Description
|
10 |
+
|
11 |
+
- **Homepage:**
|
12 |
+
- **Repository:** https://github.com/americanas-tech/b2w-reviews01
|
13 |
+
- **Paper:**
|
14 |
+
- **Leaderboard:**
|
15 |
+
- **Point of Contact:**
|
16 |
+
|
17 |
+
### Dataset Summary
|
18 |
+
|
19 |
+
B2W-Reviews01 is an open corpus of product reviews. It contains more than 130k e-commerce customer reviews, collected from the Americanas.com website between January and May, 2018. B2W-Reviews01 offers rich information about the reviewer profile, such as gender, age, and geographical location. The corpus also has two different review rates:
|
20 |
+
|
21 |
+
* the usual 5-point scale rate, represented by stars in most e-commerce websites,
|
22 |
+
* a "recommend to a friend" label, a "yes or no" question representing the willingness of the customer to recommend the product to someone else.
|
23 |
+
|
24 |
+
This dataset can be useful for several Natural Language Processing (NLP)/ Computational Linguistics (CL) tasks. The first that comes to mind is probably sentiment analysis. Sentiment analysis is the task of assigning a sentiment (or a position) to the content of a given text. For this task, B2W-Reviews01 offers the two distinct evaluation ratings.
|
25 |
+
|
26 |
+
Product reviews often have complex information, related not only to the product that was purchased, but also to the online shopping experience, payment methods, or even the product delivery process. Therefore, different facts and opinions can be extracted from such a corpus, and classifying sentiment may not be enough to capture the content of reviews. For real world applications, dealing with topic modeling, user intent identification and feature extraction also become necessary. It is relevant to know not only the reviewer’s sentiment, but also the object of this feeling.
|
27 |
+
|
28 |
+
Since B2W-Reviews01 offers the exact text written by users, this corpus also offers rich material for those interested on out-of-vocabulary words, slang identification, or spell-checker tasks. For those interested on socio-linguistics analysis, the present corpus offers a rich possibility of crossing reviewer information considering gender, age and geographical location. One can, for example, find easily how negative or positive reviews are distributed among age groups or which product categories receive more reviews from women or men.
|
29 |
+
|
30 |
+
### Supported Tasks and Leaderboards
|
31 |
+
|
32 |
+
* Sentiment Analysis
|
33 |
+
* Topic Modeling
|
34 |
+
|
35 |
+
### Languages
|
36 |
+
|
37 |
+
* Portuguese
|
38 |
+
|
39 |
+
## Dataset Structure
|
40 |
+
|
41 |
+
### Data Instances
|
42 |
+
|
43 |
+
```
|
44 |
+
{'submission_date': '2018-01-02 06:23:22',
|
45 |
+
'reviewer_id': '6adc7901926fc1697d34181fbd88895976b4f3f31f0102d90217d248a1fad156',
|
46 |
+
'product_id': '123911277',
|
47 |
+
'product_name': 'Triciclo Gangorra Belfix Cabeça Cachorro Rosa',
|
48 |
+
'product_brand': 'belfix',
|
49 |
+
'site_category_lv1': 'Brinquedos',
|
50 |
+
'site_category_lv2': 'Mini Veículos',
|
51 |
+
'review_title': 'O produto não foi entregue',
|
52 |
+
'overall_rating': 1,
|
53 |
+
'recommend_to_a_friend': 'Yes',
|
54 |
+
'review_text': 'Incrível o descaso com o consumidor. O produto não chegou, apesar de já ter sido pago. Não recebo qualquer informação sobre onde se encontra o produto, ou qualquer compensação do vendedor. Não recomendo.',
|
55 |
+
'reviewer_birth_year': 1981,
|
56 |
+
'reviewer_gender': 'M',
|
57 |
+
'reviewer_state': 'RJ'}
|
58 |
+
```
|
59 |
+
|
60 |
+
### Data Fields
|
61 |
+
|
62 |
+
[More Information Needed]
|
63 |
+
|
64 |
+
### Data Splits
|
65 |
+
|
66 |
+
### Citation Information
|
67 |
+
|
68 |
+
@inproceedings{real2019b2w,
|
69 |
+
title={B2W-reviews01: an open product reviews corpus},
|
70 |
+
author={Real, Livy and Oshiro, Marcio and Mafra, Alexandre},
|
71 |
+
booktitle={STIL-Symposium in Information and Human Language Technology},
|
72 |
+
year={2019}
|
73 |
+
}
|
74 |
+
|
75 |
+
### Contributions
|
76 |
+
|
77 |
+
[More Information Needed]
|