File size: 1,854 Bytes
109e7e0 f57e67b 109e7e0 f57e67b 109e7e0 f57e67b 29ee9c9 0a00a3f 29ee9c9 f57e67b 29ee9c9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | ---
dataset: vintage-recipes-hf
annotations_creators: [found]
language: [en]
license: cc-by-nc-4.0
pretty_name: Vintage American Recipes (1940–1999)
task_categories:
- text-generation
- recipe-generation
size_categories: 1K<n<10K
source_datasets: []
---
# 🍽️ Vintage American Recipes Dataset (1940–1999)
This curated dataset features a selection of vintage American recipes extracted from unpublished church cookbooks, bulletins, and local magazines spanning 1940 to 1999. Each recipe is cleaned and structured in JSON format, including fields such as title, ingredients, instructions, category, and year.
Over the years, I’ve been collecting a large archive of 10,000+ pre-internet recipes from cookbooks, newspapers, churches, schools, and community contributors. This dataset represents the first public release, showcasing a small but meaningful portion of this collection.
If you're interested in machine learning, historical analysis, or culinary projects and would like access to the full dataset, feel free to reach out!
## 📦 Dataset Structure
- Format: JSON
- Number of records: 77 (in this version)
- Fields:
- `title`
- `ingredients`
- `instructions`
- `category`
- `year`
## 🔍 Use Cases
- Recipe generation
- Historical food analysis
- Fine-tuning models (GPT-2, GPT-J, LLaMA)
- Text classification or clustering
## 🔖 License
This dataset is licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/).
## 🙋 Author
Created and curated by **Donglin Xiong** (@donglin1608)
## 🧠 Example
```json
{
"title": "Grandma’s Apple Pie",
"ingredients": [
"6 apples, sliced",
"1 cup sugar",
"2 tsp cinnamon",
"1 pie crust"
],
"instructions": "Mix all ingredients. Place in crust. Bake at 375°F for 45 minutes.",
"category": "Dessert",
"year": 1955
}
|