Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
task_categories:
|
|
@@ -18,4 +23,46 @@ tags:
|
|
| 18 |
pretty_name: Vintage American Recipes (1921–1999)
|
| 19 |
size_categories:
|
| 20 |
- 1K<n<10K
|
| 21 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# 🍽️ Vintage American Recipes Dataset (1940–1999)
|
| 3 |
+
|
| 4 |
+
A curated collection of vintage American recipes extracted from church cookbooks, bulletins, and magazines spanning 1940 to 1999. Each recipe is cleaned, structured in JSON, and includes fields such as title, ingredients, instructions, and category.
|
| 5 |
+
|
| 6 |
---
|
| 7 |
license: cc-by-nc-4.0
|
| 8 |
task_categories:
|
|
|
|
| 23 |
pretty_name: Vintage American Recipes (1921–1999)
|
| 24 |
size_categories:
|
| 25 |
- 1K<n<10K
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
# 🍽️ Vintage American Recipes Dataset (1940–1999)
|
| 29 |
+
|
| 30 |
+
A curated collection of vintage American recipes extracted from church cookbooks, bulletins, and magazines spanning 1940 to 1999. Each recipe is cleaned, structured in JSON, and includes fields such as title, ingredients, instructions, and category.
|
| 31 |
+
|
| 32 |
+
## 📦 Dataset Structure
|
| 33 |
+
|
| 34 |
+
- Format: JSON
|
| 35 |
+
- Number of records: 77 (in this version)
|
| 36 |
+
- Fields:
|
| 37 |
+
- `title`
|
| 38 |
+
- `ingredients`
|
| 39 |
+
- `instructions`
|
| 40 |
+
- `category`
|
| 41 |
+
- `year`
|
| 42 |
+
|
| 43 |
+
## 🔍 Use Cases
|
| 44 |
+
|
| 45 |
+
- Recipe generation
|
| 46 |
+
- Historical food analysis
|
| 47 |
+
- Fine-tuning models (GPT-2, GPT-J, LLaMA)
|
| 48 |
+
- Text classification or clustering
|
| 49 |
+
|
| 50 |
+
## 🙋 Author
|
| 51 |
+
|
| 52 |
+
Created and curated by **Donglin Xiong** (@donglin1608)
|
| 53 |
+
|
| 54 |
+
## 🧠 Example
|
| 55 |
+
|
| 56 |
+
```json
|
| 57 |
+
{
|
| 58 |
+
"title": "Grandma’s Apple Pie",
|
| 59 |
+
"ingredients": [
|
| 60 |
+
"6 apples, sliced",
|
| 61 |
+
"1 cup sugar",
|
| 62 |
+
"2 tsp cinnamon",
|
| 63 |
+
"1 pie crust"
|
| 64 |
+
],
|
| 65 |
+
"instructions": "Mix all ingredients. Place in crust. Bake at 375°F for 45 minutes.",
|
| 66 |
+
"category": "Dessert",
|
| 67 |
+
"year": 1955
|
| 68 |
+
}
|