polejowska commited on
Commit
806070f
·
verified ·
1 Parent(s): 450290d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +41 -25
README.md CHANGED
@@ -1,27 +1,43 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- splits:
7
- - name: train
8
- num_bytes: 47299
9
- num_examples: 22
10
- - name: validation
11
- num_bytes: 3820
12
- num_examples: 2
13
- - name: test
14
- num_bytes: 7747
15
- num_examples: 4
16
- download_size: 53801
17
- dataset_size: 58866
18
- configs:
19
- - config_name: default
20
- data_files:
21
- - split: train
22
- path: data/train-*
23
- - split: validation
24
- path: data/validation-*
25
- - split: test
26
- path: data/test-*
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-sa-4.0
3
+ tags:
4
+ - microbiome
5
+ - bacteria
6
+ - health
7
+ - ulcerative-colitis
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ---
9
+
10
+ # Leucnostoc and Brachyspira Microbiome Findings
11
+
12
+ This dataset contains scientific findings about bacteria in the human gut microbiome in health and ulcerative colitis.
13
+
14
+ ## Dataset Description
15
+
16
+ - **Repository:** polejowska/microbiome-leuconostoc-brachyspira
17
+ - **Size:**
18
+ - Train: 22 examples
19
+ - Validation: 2 examples
20
+ - Test: 4 examples
21
+
22
+ ## Dataset Structure
23
+
24
+ The dataset follows the same structure as TinyStories, with a single 'text' field containing scientific findings from research papers.
25
+
26
+ Example:
27
+ ```
28
+ Metagenomic insights to understand the role of polluted river Yamuna in shaping the gut microbial communities of two invasive fish species.. The gastrointestinal microbial community plays a crucial role in host health, immunity, protection, development and provides nutrients to the host. The rising human-induced pollution and heavy metal contamination in all aquatic systems globally has led us to explore the gut microbial diversity of two exotic invasive fish Cyprinus carpio and Oreochromis nilo...
29
+ ```
30
+
31
+ ## Dataset Creation
32
+
33
+ This dataset was created by extracting findings from PubMed abstracts focused on the role of bacteria in the human gut microbiome in health and ulcerative colitis. Only studies using human fecal/stool samples were included.
34
+
35
+ ## Usage
36
+
37
+ This dataset can be used to train models to understand the relationship between bacteria and human gut health.
38
+
39
+ ```python
40
+ from datasets import load_dataset
41
+
42
+ dataset = load_dataset("polejowska/microbiome-leuconostoc-brachyspira")
43
+ ```