Datasets:
New Dataset
Browse files# Dataset Preview

To give you a preview of the Amazon Food Reviews dataset, I’ll provide a brief example of the data structure based on common fields included in the dataset. Here’s what a preview might look like:
Description of Columns
1.Id: A unique identifier for each review.
2.Product Id: The Amazon product ID for the reviewed food item.
3.User Id: A unique identifier for the user who wrote the review.
4.Profile Name: The name of the reviewer.
5.Helpfulness: A ratio showing how many users found the review helpful (e.g., 1/1 = 1 out of 1 users).
6.Score: The rating given by the reviewer, ranging from 1 (worst) to 5 (best).
7.Time: The timestamp when the review was written, usually in Unix epoch format.
8.Text: The detailed review text written by the user.
Key Insights from the Preview
1.Reviews contain both quantitative data (e.g., Score, Helpfulness) and qualitative data (e.g., Summary, Text), making it useful for a wide range of analytical tasks.
2.The Helpfulness column can be used to evaluate the perceived value of each review.
3.The dataset spans different products, as indicated by unique Product Id values.
4.Review text (Text) provides ample data for natural language processing applications like sentiment analysis.
- .gitattributes +1 -0
- Amazon_Food_Reviews.csv +3 -0
|
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Amazon_Food_Reviews.csv filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e796424f5567ad6bc6ea7943749def0af38d02493576a3588dece25114c419cf
|
| 3 |
+
size 301429121
|