Datasets:

Modalities:
Image
ArXiv:
License:
Nazmush-Shamael commited on
Commit
c0c08b7
1 Parent(s): 2767619

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -22
README.md CHANGED
@@ -10,34 +10,35 @@ language:
10
 
11
  ## Description
12
 
13
- This work presents the BanglishRev Dataset, the largest e-commerce product review dataset to date for reviews written in Bengali, English, a mixture of both and Banglish, Bengali words written with English alphabets. The dataset comprises of 1.74 million written reviews from 3.2 million ratings information collected from a total of 128k products being sold in online e-commerce platforms targeting the Bengali population. It includes an extensive array of related metadata for each of the reviews including the rating given by the reviewer, date the review was posted and date of purchase, number of likes, dislikes, response from the seller, images associated with the review etc.
14
 
15
  ## Dataset Structure
16
 
17
- The dataset is structured as a JSON file with the following fields:
18
- - Product ID : Meta-data of the product.
19
- - `Number Of Reviews`: The total number of reviews for a product.
20
- - `Reviews`: A list of review objects.
21
- - `Buyer ID`: The ID of the buyer.
22
- - `Current Rating`: The rating given by the buyer.
23
- - `Review Content`: The content of the review.
24
- - `Review Date`: The date the review was posted.
25
- - `Likes`: Number of likes for the review.
26
- - `Dislikes`: Number of dislikes for the review.
27
- - `Date Bought`: The date the product was bought.
28
- - `Reply`: Any replies to the review.
29
- - `Images`: List of image URLs associated with the review.
30
- - `Average Rating`: The average rating for the product.
31
- - `Score Counts`: The count of each rating (1 star to 5 stars) given to the product.
32
- - `Category`: The category of the product.
33
- - `Parent Category`: The parent category of the product.
34
- - `Root Category`: The root category of the product.
 
35
 
36
  ## Example Entry
37
 
38
  ```json
39
- {
40
- "1400200": {
41
  "Number Of Reviews": 2,
42
  "Reviews": [
43
  {
@@ -79,5 +80,6 @@ The dataset is structured as a JSON file with the following fields:
79
  "Category": "Phone Cases",
80
  "Parent Category": "Trendy Mobile Accessories",
81
  "Root Category": "Electronics Device"
 
82
  }
83
- }
 
10
 
11
  ## Description
12
 
13
+ The BanglishRev dataset is the largest e-commerce product review dataset to date for reviews written in Bengali, English, a mixture of both and Banglish, Bengali words written with English alphabets. The dataset comprises of 1.74 million written reviews from 3.2 million ratings information collected from a total of 128k products being sold in online e-commerce platforms targeting the Bengali population. It includes an extensive array of related metadata for each of the reviews including the rating given by the reviewer, date the review was posted and date of purchase, number of likes, dislikes, response from the seller, images associated with the review etc.
14
 
15
  ## Dataset Structure
16
 
17
+ The dataset is a list stored in a JSON file. Each element of the JSON has the following properties:
18
+
19
+ - `Number Of Reviews`: The total number of reviews for a product.
20
+ - `Reviews`: A list of review objects.
21
+ - `Buyer ID`: The ID of the buyer.
22
+ - `Current Rating`: The rating given by the buyer.
23
+ - `Review Content`: The content of the review.
24
+ - `Review Date`: The date the review was posted.
25
+ - `Likes`: Number of likes for the review.
26
+ - `Dislikes`: Number of dislikes for the review.
27
+ - `Date Bought`: The date the product was bought.
28
+ - `Reply`: Any replies to the review.
29
+ - `Images`: List of image URLs associated with the review.
30
+ - `Average Rating`: The average rating for the product.
31
+ - `Score Counts`: The count of each rating (1 star to 5 stars) given to the product.
32
+ - `Category`: The category of the product.
33
+ - `Parent Category`: The parent category of the product.
34
+ - `Root Category`: The root category of the product.
35
+ - 'Product ID' : The product ID of the product.
36
 
37
  ## Example Entry
38
 
39
  ```json
40
+ [
41
+ {
42
  "Number Of Reviews": 2,
43
  "Reviews": [
44
  {
 
80
  "Category": "Phone Cases",
81
  "Parent Category": "Trendy Mobile Accessories",
82
  "Root Category": "Electronics Device"
83
+ "Product ID": "1400200"
84
  }
85
+ ]