Ichlibitiche commited on
Commit
a85a2c0
·
verified ·
1 Parent(s): 373a1e6

Add free sample and dataset card

Browse files
Files changed (2) hide show
  1. README.md +62 -0
  2. suppdb_sample.csv +0 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ pretty_name: SuppDB — Supplements & Nootropics Dataset (Free Sample)
4
+ tags:
5
+ - health
6
+ - chemistry
7
+ - supplements
8
+ - nootropics
9
+ - nih-dsld
10
+ - pubchem
11
+ - recommender-systems
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # 💊 SuppDB — Supplements & Nootropics Dataset (Free Sample)
17
+
18
+ A **free sample** of SuppDB: a structured dataset of real supplement & nootropic products built **exclusively from the public [NIH Dietary Supplement Label Database (DSLD)](https://dsld.od.nih.gov/)** — every active ingredient normalized to **milligrams**, proprietary blends flagged where the dose is undisclosed, and compounds enriched with **NIH PubChem** chemical identity. Think *INCIDecoder for supplements*: one row per active ingredient, with dose, form, safety reference, and molecular identity.
19
+
20
+ **This sample contains 2,249 ingredient records across 300 real products from 218 brands.**
21
+
22
+ The **full dataset covers 17,000+ products, 2,000+ brands, 115,000+ active-ingredient records, and 40,000+ proprietary-blend flags** (SQLite · CSV · JSON).
23
+
24
+ ## Get the Full Dataset
25
+
26
+ * 🔗 **Official Portal:** [suppdb.net](https://supplements-nootropics-suppdb.pages.dev) — full snapshot $99 one-time
27
+ * 🏆 **Kaggle:** [SuppDB Supplements Sample](https://www.kaggle.com/datasets/ahtiticheamine/suppdb-supplements-sample)
28
+ * 💊 **Interactive Explorer:** [SuppDB Sample Explorer Space](https://huggingface.co/spaces/Ichlibitiche/suppdb-sample-explorer)
29
+
30
+ ## Key Columns
31
+
32
+ | Column | Description |
33
+ | :--- | :--- |
34
+ | `brand`, `product_name`, `upc_barcode`, `form_type` | Product identity as printed on the label |
35
+ | `ingredient`, `ingredient_form`, `ingredient_category` | Active ingredient per row |
36
+ | `amount_per_serving_mg` | Dose normalized to mg (`mcg`, `g`, substance-specific `IU` handled correctly) |
37
+ | `is_proprietary_blend` | `1` where the dose is hidden in a proprietary blend (`amount = 0`) — transparency, not omission |
38
+ | `recommended_daily_mg`, `upper_safety_limit_mg` | NIH DRI reference intakes; NULL where no official value exists |
39
+ | `pubchem_cid`, `molecular_formula`, `molecular_weight`, `canonical_smiles`, `inchikey` | PubChem chemistry — InChIKey canonicalizes the same molecule across label names |
40
+ | `dsld_label_id`, `source_url` | Exact NIH DSLD label page — every record re-verifiable |
41
+
42
+ ## Quick Start
43
+
44
+ ```python
45
+ import pandas as pd
46
+
47
+ df = pd.read_csv("hf://datasets/Ichlibitiche/suppdb-supplements-sample/suppdb_sample.csv")
48
+ print(len(df), "ingredient records,", df["product_id"].nunique(), "products,", df["brand"].nunique(), "brands")
49
+ hidden = df[df["is_proprietary_blend"] == 1]
50
+ print(len(hidden), "ingredients with doses hidden in proprietary blends")
51
+ ```
52
+
53
+ ## Use Cases
54
+
55
+ - AI health co-pilots & supplement recommendation apps (structured dose + chemistry data)
56
+ - Ingredient/dose comparison and proprietary-blend transparency tools
57
+ - ML / RAG corpora over supplement labels
58
+ - Formulation, market, and assortment research across brands and ingredient categories
59
+
60
+ ## License
61
+
62
+ Sample data: **CC BY-NC 4.0** — attribution, non-commercial. Full dataset commercially licensed at [suppdb.net](https://supplements-nootropics-suppdb.pages.dev); underlying facts are public-domain U.S. Government data (NIH DSLD + PubChem) — the license covers SuppDB's curated, normalized compilation. **Not medical advice** — always verify against the current physical label. Contact: `suppdb.doorframe589@simplelogin.com`.
suppdb_sample.csv ADDED
The diff for this file is too large to render. See raw diff