Milad96 commited on
Commit
1d1c0e1
·
verified ·
1 Parent(s): 7bfae5b

Upload README_CELL3.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README_CELL3.md +69 -0
README_CELL3.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Cell 3: Quantum Literature Extension
2
+
3
+ ## Overview
4
+ Literature, preprints, and datasets for *Kluyveromyces marxianus*.
5
+
6
+ ## Statistics
7
+ - **Version**: v10.0.0
8
+ - **Total Records**: 0
9
+ - **Last Updated**: 2025-11-10
10
+
11
+ ## Sources
12
+
13
+ ## Categories
14
+
15
+ ## Data Access
16
+
17
+ ### Load Splits
18
+ ```python
19
+ from datasets import load_dataset
20
+
21
+ # Load Cell 3 splits
22
+ dataset = load_dataset("Milad96/Kluyveromyces-marxianus", data_dir="cell3_splits")
23
+ train = dataset['train']
24
+ val = dataset['validation']
25
+ test = dataset['test']
26
+ ```
27
+
28
+ ### Load Individual Sources
29
+ ```python
30
+ # Europe PMC
31
+ europepmc = load_dataset("Milad96/Kluyveromyces-marxianus", split="train", data_dir="cell3_europepmc")
32
+
33
+ # Semantic Scholar
34
+ semantic = load_dataset("Milad96/Kluyveromyces-marxianus", split="train", data_dir="cell3_semantic")
35
+
36
+ # BioRxiv
37
+ biorxiv = load_dataset("Milad96/Kluyveromyces-marxianus", split="train", data_dir="cell3_biorxiv")
38
+
39
+ # Zenodo
40
+ zenodo = load_dataset("Milad96/Kluyveromyces-marxianus", split="train", data_dir="cell3_zenodo")
41
+ ```
42
+
43
+ ### Filter by Category
44
+ ```python
45
+ train_data = dataset['train']
46
+ literature = train_data.filter(lambda x: x['category'] == 'literature')
47
+ preprints = train_data.filter(lambda x: x['category'] == 'preprint')
48
+ datasets = train_data.filter(lambda x: x['category'] == 'dataset')
49
+ ```
50
+
51
+ ## Schema
52
+ All records follow the unified schema with fields:
53
+ - `id`, `source`, `category`
54
+ - `title`, `abstract`, `full_text`
55
+ - `pmid`, `doi`, `authors`, `journal`, `year`
56
+ - `gene_id`, `gene_name`, `protein_id`, etc.
57
+
58
+ ## Integration
59
+ - ✅ Compatible with Cell 0 directory structure
60
+ - ✅ Compatible with Cell 1/2 data
61
+ - ✅ Proper data_dir usage (no overwrites)
62
+ - ✅ Local files saved in `km_dataset/literature/` and `km_dataset/repository/`
63
+
64
+ ## Citation
65
+ If using this data, please cite the original sources and this dataset.
66
+
67
+ **Version**: v10.0.0
68
+ **Cell**: 3/5
69
+ **Status**: ✅ Production Ready