dataDatasic commited on
Commit
8cdff08
·
verified ·
1 Parent(s): 6ca71c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -32
README.md CHANGED
@@ -1,4 +1,14 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  license: other
3
  license_name: zion-vintage-media-proprietary
4
  license_link: LICENSE
@@ -17,46 +27,34 @@ tags:
17
  - Text-Generation
18
  - Historical
19
  size_categories:
20
- - n<1K
21
- pretty_name: Zion Vintage Recipes (Sample)
22
  ---
23
 
24
- # Zion Vintage Media: Historical Multimodal Culinary Archive (Sample)
25
-
26
- ## 📌 Commercial Licensing & Full Access
27
- **This repository contains a 50-item evaluation sample.** The full, production-ready dataset contains **10,000+ multimodal pairs** (High-Resolution Scans + Structured JSON) of unpublished, offline historical recipes spanning the 1940s to the 1990s.
28
-
29
- To purchase a commercial license for the full SQL database and high-resolution TIF/JPG scans for AI/ML training, please contact:
30
- * **Email:** admin@zionvintagemedia.com
31
- * **Website:** [zionvintagemedia.com]Vintage store(https://zionvintagemedia.com)
32
- * **Showcase:** [Dataset Explorer](https://ohcc-dataset-explore.vercel.app/)
33
 
34
- ---
 
35
 
36
- ## 📊 Dataset Overview
37
- This dataset provides rare, Alternative Data for training Large Language Models (LLMs) and Vision-Language Models (VLMs). Because these physical, regional church cookbooks have never been published on the public internet, they provide completely novel tokens, historical dialects, archaic measurements, and procedural logic free from standard web-scraping contamination.
38
 
39
- ### Ground Truth Quality
40
- All text has been transcribed and structured from original physical media using high-resolution CZUR archival scanners, allowing for perfect Image-to-Text grounding.
 
 
41
 
42
  ---
43
 
44
- ## 🗄️ Data Structure (22 Highly-Enriched Columns)
45
- This sample `metadata.csv` demonstrates our rigorous data engineering. It includes 22 structured columns:
46
-
47
- **Recipe Data:**
48
- * `recipe_id`, `contributor`, `contributor_role`
49
- * `yield_amount`, `oven_temperature`
50
- * `ingredients` (Serialized JSON)
51
- * `instructions` & `instruction_steps` (Serialized JSON)
52
- * `special_notes` & `data_quirks` (Captures historical oddities and OCR edge-cases)
53
 
54
- **Historical Cookbook Context:**
55
- * `book_title`, `book_author`, `publication_year`
56
- * `location`, `sales_purpose`, `historical_notes`
 
57
 
58
- **File Mapping:**
59
- * `source_filename`, `source_filenames` (For multimodal image pairing)
 
60
 
61
- ---
62
- *© 2026 Bot and Dot Retail Management LLC / Zion Vintage Media.*
 
1
  ---
2
+ configs:
3
+ - config_name: sample_50
4
+ data_files:
5
+ - split: train
6
+ path: "sample_50/metadata.csv"
7
+ - config_name: preview_1000
8
+ data_files:
9
+ - split: train
10
+ path: "preview_1000/metadata.csv"
11
+
12
  license: other
13
  license_name: zion-vintage-media-proprietary
14
  license_link: LICENSE
 
27
  - Text-Generation
28
  - Historical
29
  size_categories:
30
+ - 1K<n<10K
31
+ pretty_name: Zion Vintage Recipes (Multimodal Archive)
32
  ---
33
 
34
+ # Zion Vintage Media: Historical Multimodal Culinary Archive
 
 
 
 
 
 
 
 
35
 
36
+ ## 💎 Commercial Licensing & Full Dataset Access
37
+ **This repository contains two evaluation tiers.** The full, production-ready dataset contains **27,000+ multimodal pairs** (High-Resolution Scans + Structured JSON) of unpublished, offline historical recipes spanning from the 1940s to the 2010s.
38
 
39
+ This data is **Copyright Cleared** and is **Internet-Original**, meaning it has never been indexed by web crawlers, making it perfect for training models on "uncontaminated" tokens.
 
40
 
41
+ To purchase a commercial license for the full SQL database and high-resolution TIF/JPG scans, please contact:
42
+ * **Email:** admin@zionarchive.ai
43
+ * **Website:** [Zion Archive](https://zionvintagemedia.com)
44
+ * **Live Showcase:** [Interactive Dataset Explorer](https://recipes.zionarchive.ai/)
45
 
46
  ---
47
 
48
+ ## 📂 Available Versions
49
+ Use the Hugging Face `config` selector to load your preferred scale:
 
 
 
 
 
 
 
50
 
51
+ | Version | Size | Purpose |
52
+ | :--- | :--- | :--- |
53
+ | **sample_50** | 50 Rows | Instant format check and schema validation. |
54
+ | **preview_1000** | 1,000 Rows | Research preview for loss-curve testing & mini-finetuning. |
55
 
56
+ ### How to load the 1,000-Row Preview:
57
+ ```python
58
+ from datasets import load_dataset
59
 
60
+ dataset = load_dataset("dataDatasic/historical-culinary-archive-multimodal", "preview_1000")