Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -33,3 +33,43 @@ configs:
|
|
33 |
- split: train
|
34 |
path: data/train-*
|
35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
- split: train
|
34 |
path: data/train-*
|
35 |
---
|
36 |
+
# Good Old-Fashioned Pancakes Reviews π₯
|
37 |
+
|
38 |
+
This dataset contains user reviews of the **Good Old-Fashioned Pancakes** recipe from AllRecipes. It includes user ratings, comments, and additional metadata.
|
39 |
+
|
40 |
+
## Dataset Details π
|
41 |
+
|
42 |
+
- **Name**: Good Old-Fashioned Pancakes Reviews
|
43 |
+
- **Language**: English π¬π§
|
44 |
+
- **Format**: JSON structured as a Hugging Face dataset
|
45 |
+
|
46 |
+
## Data Structure π
|
47 |
+
|
48 |
+
Each review entry contains the following fields:
|
49 |
+
|
50 |
+
| Field | Type | Description |
|
51 |
+
|---------------|--------|-------------|
|
52 |
+
| `review_id` | string | Unique identifier for each review |
|
53 |
+
| `username` | string | Username of the reviewer |
|
54 |
+
| `user_profile`| string | URL to the reviewer's profile |
|
55 |
+
| `date` | string | Date of the review (MM/DD/YYYY) |
|
56 |
+
| `rating` | int | Rating given by the user (1-5) |
|
57 |
+
| `tags` | list | Tags describing the review |
|
58 |
+
| `text` | string | Full review text |
|
59 |
+
| `helpful_votes` | int | Number of users who found the review helpful |
|
60 |
+
| `edited` | bool | Whether the review was edited |
|
61 |
+
| `photos` | list | URLs of photos uploaded with the review |
|
62 |
+
|
63 |
+
## Usage π
|
64 |
+
To load the dataset using the Hugging Face datasets library:
|
65 |
+
```python
|
66 |
+
from datasets import load_dataset
|
67 |
+
|
68 |
+
dataset = load_dataset("derek-thomas/good-old-fashioned-pancakes-reviews")
|
69 |
+
print(dataset)
|
70 |
+
```
|
71 |
+
|
72 |
+
## Contribution π€
|
73 |
+
If you'd like to contribute or report issues, feel free to open a [discussion](https://huggingface.co/datasets/derek-thomas/good-old-fashioned-pancakes-reviews/discussions) or PR on Hugging Face Datasets.
|
74 |
+
|
75 |
+
Enjoy the dataset and happy cooking! π₯π₯
|