polejowska commited on
Commit
d1e82a2
·
verified ·
1 Parent(s): 350ddf1

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: 6246
9
- num_examples: 20
10
- - name: validation
11
- num_bytes: 1087
12
- num_examples: 2
13
- - name: test
14
- num_bytes: 1345
15
- num_examples: 3
16
- download_size: 12171
17
- dataset_size: 8678
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
+ # leuconostoc-brachyspira
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/leuconostoc-brachyspira
17
+ - **Size:**
18
+ - Train: 20 examples
19
+ - Validation: 2 examples
20
+ - Test: 3 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
+ Patients with beneficial inflammatory-marker changes had higher baseline proportions of Faecalibacterium, Leuconostoc , and Odoribacter compared to corresponding non-responders. CONCLUSIONS & INFERENCES: Identifying patients with a more amenable microbiome at treatment initiation may result in better treatment response....
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/leuconostoc-brachyspira")
43
+ ```