AWeirdDev commited on
Commit
67d0c1f
1 Parent(s): 44b832d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -69,4 +69,61 @@ configs:
69
  data_files:
70
  - split: train
71
  path: data/train-*
 
 
 
 
 
 
 
 
 
72
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  data_files:
70
  - split: train
71
  path: data/train-*
72
+ task_categories:
73
+ - text-classification
74
+ - text-generation
75
+ - text2text-generation
76
+ language:
77
+ - en
78
+ pretty_name: All Recipes (xs)
79
+ size_categories:
80
+ - n<1K
81
  ---
82
+
83
+ # all-recipes-xs (500)
84
+
85
+ [All Recipes](https://allrecipes.com) dataset (extra small).
86
+
87
+ ```python
88
+ from datasets import load_dataset
89
+
90
+ # Load the dataset
91
+ dataset = load_dataset("AWeirdDev/all-recipes-xs")
92
+ ```
93
+
94
+ ## Features
95
+
96
+ **Note:** Empty values are presented as `"unknown"` instead of `None`.
97
+
98
+ ```python
99
+ {
100
+ "name": "Dutch … Beef", # Name of the recipe
101
+ "review": "I found this recipe attached…", # Subheading
102
+ "rating": 5.0, # Overall rating 0 ~ 5
103
+ "meta": {
104
+ # Metadata. Some keys may not present
105
+ "prep_time": "10 mins",
106
+ "cook_time": "4 hrs 5 mins",
107
+ "total_time": "4 hrs 15 mins",
108
+ "servings": "12",
109
+ "yield": "12 servings"
110
+ },
111
+ "ingredients": [
112
+ {
113
+ "quanity": "1",
114
+ "unit": "(4 pound)",
115
+ "name": "corned beef brisket with spice packet"
116
+ },
117
+ ...
118
+ ],
119
+ "cooks_note": "If there is a…", # Cook's Note (if present)
120
+ "editors_note": "Nutrition data for this…", # Editor's Note (if present)
121
+ "nutrition_facts": {
122
+ "Calories": "251",
123
+ "Fat": "13g",
124
+ "Carbs": "16g",
125
+ "Protein": "13g"
126
+ },
127
+ "url": "https://www.allrecipes.com/recipe/267704/dutch-oven-crunchy-corned-beef/"
128
+ }
129
+ ```