anystackdev commited on
Commit
95c59c3
·
verified ·
1 Parent(s): 88b2f92

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +183 -0
README.md ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-classification
7
+ - table-question-answering
8
+ - text-retrieval
9
+ - feature-extraction
10
+ - text-generation
11
+ tags:
12
+ - food
13
+ - restaurants
14
+ - menus
15
+ - commerce
16
+ - dining
17
+ - food-tech
18
+ - business
19
+ - usa
20
+ - location-data
21
+ - structured-data
22
+ - tabular
23
+ - api-data
24
+ size_categories:
25
+ - 10K<n<100K
26
+ pretty_name: Souslab — US Restaurant Menus (Sample)
27
+ configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: "menu_items_sample.csv"
32
+ ---
33
+
34
+ # Souslab — US Restaurant Menus
35
+
36
+ A structured sample of the Souslab US restaurant menu dataset: real restaurants, real menu items, real prices — normalized into a clean schema you can train on or analyze directly.
37
+
38
+ This sample is published openly under CC-BY-NC-4.0 for research and non-commercial evaluation. The full dataset — **449,000+ US restaurants and 44.3M+ menu items, refreshed continuously with chain-level aggregation** — is available via the [Souslab API](https://souslab.site) under commercial license.
39
+
40
+ ---
41
+
42
+ ## 🚀 Quick start
43
+
44
+ ```python
45
+ from datasets import load_dataset
46
+
47
+ ds = load_dataset("AnyStackLabsdev/souslab-us-restaurant-menus")
48
+ print(ds)
49
+ print(ds["train"][0])
50
+ ```
51
+
52
+ Or download directly via [Files and versions](https://huggingface.co/datasets/AnyStackLabsdev/souslab-us-restaurant-menus/tree/main).
53
+
54
+ ---
55
+
56
+ ## 📊 What's in this sample
57
+
58
+ - **Restaurants:** ~4,600 US restaurants
59
+ - **Menu items:** ~10,000 menu items
60
+ - **Geographic coverage:** All 50 US states + DC
61
+ - **Chain coverage:** Independents and chain locations, with chain-level grouping
62
+ - **Snapshot date:** 2026-05-29
63
+ - **Format:** CSV
64
+ - **File size:** ~2.1 MB
65
+
66
+ This is a **representative sample** — geographically and categorically balanced, but a fraction of the full Souslab corpus. The full dataset is ~4,400x larger.
67
+
68
+ ---
69
+
70
+ ## 🗂️ Schema
71
+
72
+ ### `menu_items_sample.csv`
73
+
74
+ | Field | Type | Description |
75
+ |---|---|---|
76
+ | `item_uid` | string | Stable unique identifier for this menu item |
77
+ | `restaurant_id` | string | Foreign key — links to the restaurant |
78
+ | `menu_name` | string | Name of the menu this item appears on |
79
+ | `section_name` | string | Menu section or category (e.g. "Appetizers", "Drinks") |
80
+ | `item_name` | string | Display name of the menu item |
81
+ | `description` | string \| null | Item description as listed on the menu |
82
+ | `price` | float \| null | Price in local currency |
83
+ | `price_text` | string \| null | Raw price string as scraped (e.g. "$12.99") |
84
+ | `currency` | string | ISO 4217 currency code (e.g. "USD") |
85
+ | `out_of_stock` | boolean | Whether the item was marked unavailable at time of snapshot |
86
+ | `city_name` | string | City of the restaurant |
87
+ | `state_code` | string | US state (2-letter code) |
88
+ | `zip` | string | Postal code |
89
+ | `geo_lat` | float | Latitude of the restaurant |
90
+ | `geo_lng` | float | Longitude of the restaurant |
91
+ | `canonical_item_id` | string \| null | Souslab canonical item identifier for cross-restaurant deduplication |
92
+
93
+ ---
94
+
95
+ ## 🧠 Methodology summary
96
+
97
+ The full methodology lives at [souslab.site/methodology](https://souslab.site/methodology) — covering collection sources, refresh cadence, chain matching, quality controls, and known gaps. Quick version:
98
+
99
+ - **Sources:** restaurants' own published menus, public aggregator surfaces, and partner data feeds. We don't bypass authentication, scrape behind logins, or ingest user reviews or photos.
100
+ - **Chain matching:** multi-signal (registry-anchored, name similarity, location/ownership context, menu signature) — same chain across locations resolves to the same `chain_id`. "Joe's Pizza" in NYC and "Joe's Pizza" in Topeka stay distinct unless ownership/menu signals tie them.
101
+ - **Canonical items:** `canonical_item_id` links the same item appearing across multiple sources or snapshots — useful for deduplication and price tracking over time.
102
+ - **Refresh cadence (in the live API):** tiered. Top chains daily, mid-tier 2–4× per week, high-traffic independents weekly, long-tail independents monthly.
103
+ - **Known gaps:** thin coverage of dine-in independents without digital menus, no nutritional data, no promotional pricing modeling, US-only, English-only.
104
+
105
+ This sample represents a point-in-time snapshot. The live API is refreshed continuously.
106
+
107
+ ---
108
+
109
+ ## 🎯 Use cases
110
+
111
+ This dataset is designed for:
112
+
113
+ - **AI/ML training:** fine-tuning LLMs on food/menu language, training cuisine and dietary classifiers, building food-aware vision/multimodal models, grounding RAG over real-world food knowledge
114
+ - **Market research:** pricing analysis, menu trend tracking, regional cuisine prevalence, chain operational analysis
115
+ - **Product development:** recommendation engines, menu search and discovery, dietary filtering, food delivery platforms
116
+ - **Academic research:** food systems analysis, restaurant economics, regional dining patterns
117
+ - **Alt-data signal generation:** restaurant inflation, regional pricing dynamics, chain operational shifts
118
+
119
+ For commercial deployment, real-time data, larger volumes, or the full 44M+ menu item universe, [contact us for an API license](https://souslab.site).
120
+
121
+ ---
122
+
123
+ ## ⚖️ License
124
+
125
+ This sample is released under **[CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/)** — free for research and non-commercial use with attribution.
126
+
127
+ **Commercial use of this sample, or of any derivative dataset or model trained on it, requires a commercial license from Any Stack Labs.** This includes:
128
+
129
+ - Production deployment in a commercial product or service
130
+ - Training models for commercial use (including model-as-a-service)
131
+ - Reselling, sublicensing, or distributing derivatives
132
+ - Embedding in commercial datasets or research products
133
+
134
+ For commercial licensing, contact [hello@souslab.site](mailto:hello@souslab.site) or visit [souslab.site](https://souslab.site).
135
+
136
+ ### Attribution
137
+
138
+ When using this sample in research or other CC-BY-NC contexts, please attribute as:
139
+
140
+ > *"Data sourced from the Souslab US Restaurant Menus dataset by Any Stack Labs (souslab.site)."*
141
+
142
+ ---
143
+
144
+ ## 📚 Citation
145
+
146
+ ```bibtex
147
+ @dataset{souslab_us_restaurant_menus_2026,
148
+ title = {Souslab US Restaurant Menus (Sample)},
149
+ author = {{Any Stack Labs}},
150
+ year = {2026},
151
+ publisher = {Hugging Face},
152
+ url = {https://huggingface.co/datasets/AnyStackLabsdev/souslab-us-restaurant-menus},
153
+ note = {Sample of the full Souslab dataset; full dataset available via API at souslab.site}
154
+ }
155
+ ```
156
+
157
+ ---
158
+
159
+ ## 🔗 Related
160
+
161
+ - **Full dataset & API:** [souslab.site](https://souslab.site)
162
+ - **API documentation:** [souslab.site/docs](https://souslab.site/docs)
163
+ - **Methodology:** [souslab.site/methodology](https://souslab.site/methodology)
164
+ - **Any Stack Labs:** [huggingface.co/AnyStackLabsdev](https://huggingface.co/AnyStackLabsdev)
165
+
166
+ ---
167
+
168
+ ## 📬 Contact
169
+
170
+ - **Commercial licensing & API access:** [hello@souslab.site](mailto:hello@souslab.site)
171
+ - **Questions about this sample:** open a discussion on this dataset page
172
+ - **Data errors or corrections:** [souslab.site/corrections](https://souslab.site)
173
+ - **Restaurant takedown requests:** [souslab.site/takedown](https://souslab.site)
174
+
175
+ ---
176
+
177
+ ## 📝 Changelog
178
+
179
+ - **v1.0 — 2026-05-29** — Initial public release. ~4,600 restaurants, ~10,000 menu items.
180
+
181
+ ---
182
+
183
+ *Souslab is built by [Any Stack Labs](https://huggingface.co/AnyStackLabsdev).*