CoolFace
Datasetpublic

AWeirdDev/all-recipes-xs

all-recipes-xs (500) All Recipes dataset (extra small). from datasets import load_dataset # Load the dataset dataset = load_dataset("AWeirdDev/all-recipes-xs") Alternatively, load with pickle from _frozen.pkl: import pickle import requests r = requests.get("https://huggingface.co/datasets/AWeirdDev/all-recipes-xs/resolve/main/_frozen.pkl") dataset = pickle.loads(r.content) Features Note: Empty values are presented as "unknown" instead of None (normally, unless… See the full description on the dataset page: https://huggingface.co/datasets/AWeirdDev/all-recipes-xs.

sourceHugging Facemitupdated 2y agoView on Hugging Face
1likes31downloads
Dataset Card

all-recipes-xs (500)

All Recipes dataset (extra small).

python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("AWeirdDev/all-recipes-xs")

Alternatively, load with pickle from _frozen.pkl:

python
import pickle
import requests

r = requests.get("https://huggingface.co/datasets/AWeirdDev/all-recipes-xs/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).

python
{
    "name": "Dutch … Beef",  # Name of the recipe
    "review": "I found this recipe attached…",  # Subheading
    "rating": 5.0,  # Overall rating 0 ~ 5
    "meta": {
        # Metadata. Some keys may not present
        "activate_time": None,
        "additional_time": None,
        "bake_time": None,
        "cool_time": None,
        "fry_time": None,
        "rest_time": None,
        "soak_time": None,
        "prep_time": "10 mins",
        "cook_time": "4 hrs 5 mins",
        "total_time": "4 hrs 15 mins",
        "servings": "12",
        "yield": "12 servings"
    },
    "ingredients": [
        {
            "quanity": "1",
            "unit": "(4 pound)",
            "name": "corned beef brisket with spice packet"
        },
        ...
    ],
    "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",
        "Fat": "13g",
        "Carbs": "16g",
        "Protein": "13g"
    },
    "url": "https://www.allrecipes.com/recipe/267704/dutch-oven-crunchy-corned-beef/"
}