Milad96 commited on
Commit
f4effc7
Β·
verified Β·
1 Parent(s): 4c69dc3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +109 -59
README.md CHANGED
@@ -1,61 +1,111 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: source
7
- dtype: string
8
- - name: category
9
- dtype: string
10
- - name: gene_id
11
- dtype: string
12
- - name: gene_name
13
- dtype: string
14
- - name: gene_symbol
15
- dtype: string
16
- - name: protein_id
17
- dtype: string
18
- - name: protein_name
19
- dtype: string
20
- - name: sequence
21
- dtype: string
22
- - name: title
23
- dtype: string
24
- - name: abstract
25
- dtype: string
26
- - name: full_text
27
- dtype: string
28
- - name: pmid
29
- dtype: string
30
- - name: doi
31
- dtype: string
32
- - name: authors
33
- dtype: string
34
- - name: journal
35
- dtype: string
36
- - name: year
37
- dtype: string
38
- - name: timestamp
39
- dtype: string
40
- splits:
41
- - name: train
42
- num_bytes: 40452
43
- num_examples: 299
44
- - name: validation
45
- num_bytes: 4734
46
- num_examples: 35
47
- - name: test
48
- num_bytes: 2433
49
- num_examples: 18
50
- download_size: 28311
51
- dataset_size: 47619
52
- configs:
53
- - config_name: default
54
- data_files:
55
- - split: train
56
- path: cell1_splits/train-*
57
- - split: validation
58
- path: cell1_splits/validation-*
59
- - split: test
60
- path: cell1_splits/test-*
61
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: [en]
3
+ license: cc-by-4.0
4
+ task_categories: [text-generation,token-classification,question-answering]
5
+ tags: [biology,kluyveromyces-marxianus,yeast,genomics,proteomics,bioinformatics]
6
+ size_categories: ["10K<n<100K"]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
+
9
+ # 🧬 Kluyveromyces marxianus Quantum Dataset v10.0.0
10
+
11
+ ## Overview
12
+
13
+ Comprehensive multi-omics dataset for *Kluyveromyces marxianus* collected using quantum-grade async streaming pipeline, fully integrated with Cell 0's structured directory system.
14
+
15
+ ### Statistics
16
+
17
+ | Metric | Value |
18
+ |--------|-------|
19
+ | **Total Collected** | 3,836 |
20
+ | **Total Local Saved** | 3,836 |
21
+ | **Version** | v10.0.0 |
22
+ | **Collection Date** | 2025-11-10 |
23
+
24
+ ### Data Categories & Local Storage
25
+
26
+ - **Literature**: 1,417 records (local: 1,417)
27
+ - **Proteins**: 1,001 records (local: 1,001)
28
+ - **PMC Full-Text**: 1,000 records (local: 1,000)
29
+ - **SRA Sequencing**: 352 records (local: 352)
30
+ - **GEO Expression**: 48 records (local: 48)
31
+ - **Nucleotide Sequences**: 18 records (local: 18)
32
+
33
+ ### Cell 0 Integration
34
+
35
+ This dataset **strictly respects** Cell 0's directory structure. Only folders actively used by collectors:
36
+
37
+ ```
38
+ km_dataset/
39
+ β”œβ”€β”€ genomic/ # Genes, nucleotide sequences
40
+ β”œβ”€β”€ protein/ # Protein sequences
41
+ β”œβ”€β”€ literature/ # PubMed, PMC articles
42
+ β”œβ”€β”€ expression/ # GEO, SRA sequencing data
43
+ └── checkpoints/
44
+ └── cell1_quantum/ # Collection checkpoints
45
+ ```
46
+
47
+ **Note**: Cell 0 also creates `pathway/`, `interaction/`, `structure/`, `repository/` folders, but current collectors don't produce data for these categories yet.
48
+
49
+ ### HuggingFace Organization
50
+
51
+ Data is organized by phase using `data_dir` to prevent overwrites:
52
+ - `cell1_genes` - Gene data
53
+ - `cell1_proteins` - Protein sequences
54
+ - `cell1_literature` - PubMed articles
55
+ - `cell1_pmc` - PMC full-text articles
56
+ - `cell1_sequences` - Nucleotide sequences
57
+ - `cell1_geo` - GEO expression data
58
+ - `cell1_sra` - SRA sequencing data
59
+ - `cell1_splits` - Train/validation/test splits
60
+
61
+ ## Usage
62
+
63
+ ### Load All Data
64
+ ```python
65
+ from datasets import load_dataset, concatenate_datasets
66
+
67
+ # Load all phases (FIXED: correct data_dir names)
68
+ all_data = []
69
+ for phase in ['cell1_genes', 'cell1_proteins', 'cell1_literature',
70
+ 'cell1_pmc', 'cell1_sequences', 'cell1_geo', 'cell1_sra']:
71
+ try:
72
+ ds = load_dataset("Milad96/Kluyveromyces-marxianus", split='train', data_dir=phase)
73
+ all_data.append(ds)
74
+ except:
75
+ pass
76
+
77
+ combined = concatenate_datasets(all_data)
78
+ ```
79
+
80
+ ### Load Specific Phase
81
+ ```python
82
+ # Load only genes
83
+ genes = load_dataset("Milad96/Kluyveromyces-marxianus", split='train', data_dir='cell1_genes')
84
+
85
+ # Load only literature
86
+ literature = load_dataset("Milad96/Kluyveromyces-marxianus", split='train', data_dir='cell1_literature')
87
+ ```
88
+
89
+ ### Load Splits
90
+ ```python
91
+ dataset = load_dataset("Milad96/Kluyveromyces-marxianus", data_dir='cell1_splits')
92
+ train = dataset['train']
93
+ val = dataset.get('validation')
94
+ test = dataset.get('test')
95
+ ```
96
+
97
+ ## Citation
98
+ ```bibtex
99
+ @dataset{km_quantum_v10_0_0,
100
+ title={Kluyveromyces marxianus Quantum Dataset},
101
+ version={v10.0.0},
102
+ year={2025},
103
+ url={https://huggingface.co/datasets/Milad96/Kluyveromyces-marxianus}
104
+ }
105
+ ```
106
+
107
+ **Status**: βœ… Production Ready
108
+ **Quality**: 🌟 Quantum Grade
109
+ **Pipeline**: Async Streaming v10.0 + Cell 0 Full Integration
110
+ **Local Storage**: βœ… All records saved in structured folders
111
+ **Overwrite Protection**: βœ… Phase-specific data_dirs