The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
YAML Metadata Warning:The task_categories "text2text-generation" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other
all-recipes-xs (2000)
All Recipes dataset (small).
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("AWeirdDev/all-recipes-sm")
Alternatively, load with pickle from _frozen.pkl:
import pickle
import requests
r = requests.get("https://huggingface.co/datasets/AWeirdDev/all-recipes-sm/resolve/main/_frozen.pkl")
dataset = pickle.loads(r.content)
Features
Note: Empty values are presented as "unknown" instead of None (normally, unless handled by the 🤗 Datasets library).
{
"name": "Dutch … Beef", # Name of the recipe
"review": "I found this recipe attached…", # Subheading
"rating": 5.0, # Overall rating 0 ~ 5
"meta": {
# Metadata. May not be present
"active_time": None,
"additional_time": None,
"bake_time": None,
"chill_time": None,
"cook_time": "4 hrs 5 mins",
"cool_time": None,
"fry_time": None,
"marinate_time": None,
"prep_time": "10 mins",
"rest_time": None,
"servings": "12",
"soak_time": None,
"stand_time": None,
"total_time": "4 hrs 15 mins",
"yield": "12 servings"
},
"ingredients": [
{
"name": "corned beef brisket with spice packet",
"quanity": "1",
"unit": "(4 pound)"
},
...
],
"steps": [
# Steps (unstripped)
" Place corned beef brisket…\n",
" Combine brown sugar, …\n",
" Preheat an outdoor grill …\n",
" Place the coated corned …\n"
],
"cooks_note": "If there is a…", # Cook's Note (if present)
"editors_note": "Nutrition data for this…", # Editor's Note (if present)
"nutrition_facts": {
"Calories": "251",
"Carbs": "16g",
"Fat": "13g",
"Protein": "13g"
},
"url": "https://www.allrecipes.com/recipe/267704/dutch-oven-crunchy-corned-beef/"
}
- Downloads last month
- 95