kumbh commited on
Commit
5b79972
·
verified ·
1 Parent(s): 11f708a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +114 -0
README.md ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-generation
7
+ - question-answering
8
+ task_ids:
9
+ - language-modeling
10
+ - open-domain-qa
11
+ tags:
12
+ - nutrition
13
+ - health
14
+ - food-safety
15
+ - dietetics
16
+ - india
17
+ - food-additives
18
+ - glycaemic-index
19
+ - nlp
20
+ - instruction-tuning
21
+ pretty_name: NeuroLab Health & Nutrition Knowledge Base
22
+ size_categories:
23
+ - 1K<n<10K
24
+ configs:
25
+ - config_name: default
26
+ data_files:
27
+ - split: train
28
+ path: data/train.jsonl
29
+ - split: validation
30
+ path: data/valid.jsonl
31
+ - config_name: parquet
32
+ data_files:
33
+ - split: train
34
+ path: data/dataset.parquet
35
+ ---
36
+
37
+ # NeuroLab Health & Nutrition Knowledge Base
38
+
39
+ A curated instruction-tuning dataset for health and nutrition AI assistants, with a focus on Indian dietary guidelines, food safety, and packaged food analysis.
40
+
41
+ ## Dataset Description
42
+
43
+ This dataset provides question-answer pairs formatted for supervised fine-tuning (SFT) of large language models. It covers:
44
+
45
+ - **E-numbers / Food Additives** — Safety profiles, origins, regulatory status
46
+ - **Glycaemic Index (GI)** — GI values and glycaemic load for 40+ common foods including Indian staples
47
+ - **ICMR Dietary Guidelines** — Recommended Dietary Allowances for Indian population groups (ICMR-NIN 2020)
48
+ - **NOVA Classification** — Ultra-processed food identification (Groups 1-4)
49
+ - **Nutrient Deficiency Guide** — Symptoms, at-risk groups, food sources, and absorption tips for 8 key nutrients
50
+ - **Packaged Food Analysis** — Products from Open Food Facts with nutritional breakdowns
51
+ - **USDA Nutritional Composition** — Per-100g nutritional data for common whole foods
52
+
53
+ ## Data Splits
54
+
55
+ | Split | Rows |
56
+ |------------|----------|
57
+ | Train | 2,781 |
58
+ | Validation | 309 |
59
+ | **Total** | **3,090** |
60
+
61
+ ## Data Fields
62
+
63
+ Each example contains:
64
+
65
+ ```json
66
+ {
67
+ "conversations": [
68
+ {"from": "system", "value": "You are NeuroLab AI..."},
69
+ {"from": "human", "value": "What is the GI of brown rice?"},
70
+ {"from": "gpt", "value": "The glycaemic index of brown rice is 50..."}
71
+ ]
72
+ }
73
+ ```
74
+
75
+ The Parquet split additionally includes `question`, `answer`, `source`, and `quality` fields for easy filtering.
76
+
77
+ ## Sources
78
+
79
+ - ICMR-NIN 2020 Dietary Guidelines (India)
80
+ - Glycaemic Index Database (Atkinson et al., 2021)
81
+ - E-number / Food Additives Reference (EU Regulation 1333/2008)
82
+ - NOVA Food Processing Classification (Monteiro et al.)
83
+ - Open Food Facts (openfoodfacts.org)
84
+ - USDA FoodData Central
85
+ - Expert-curated Q&A pairs
86
+
87
+ ## Intended Use
88
+
89
+ - Fine-tuning language models for health and nutrition question-answering
90
+ - Building RAG pipelines for food safety and dietary guidance
91
+ - Research on Indian dietary patterns and food labelling
92
+
93
+ ## Limitations
94
+
95
+ - Nutritional values are reference averages; individual food products vary.
96
+ - ICMR RDAs are specific to the Indian population and may differ from WHO or USDA recommendations.
97
+ - Packaged food data from Open Food Facts may be incomplete or user-contributed.
98
+ - This dataset is for educational purposes and should not replace personalised medical advice.
99
+
100
+ ## License
101
+
102
+ [Creative Commons Attribution 4.0 (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/)
103
+
104
+ ## Citation
105
+
106
+ ```bibtex
107
+ @dataset{neurolab_nutrition_2024,
108
+ title = {NeuroLab Health \& Nutrition Knowledge Base},
109
+ author = {NeuroLab},
110
+ year = {2024},
111
+ publisher = {HuggingFace},
112
+ url = {https://huggingface.co/datasets/kumbh/neurolab-health-nutrition}
113
+ }
114
+ ```