nobusama17 commited on
Commit
9e19165
·
verified ·
1 Parent(s): e67c9b8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CDT2-data
2
+
3
+ Data files for [Central Dogma Transformer II (CDT-II)](https://github.com/nobusama/CDT2).
4
+
5
+ ## Files
6
+
7
+ | File | Description | Size |
8
+ |------|-------------|------|
9
+ | `morris_celllevel_effects_2361.h5` | Cell-level perturbation effects (TSS, 2,361 genes) | 41 MB |
10
+ | `morris_snp_celllevel_effects_2361.h5` | Cell-level perturbation effects (SNP, 2,361 genes) | 34 MB |
11
+ | `k562_gene_embeddings_aligned.h5` | Gene embeddings from scGPT (2,360 genes) | 4.4 MB |
12
+ | `cdt_morris_celllevel_best.pt` | Trained CDT-II model weights | 80 MB |
13
+
14
+ ## Enformer Embeddings (Not Included)
15
+
16
+ The Enformer embeddings must be generated using the notebooks in the CDT2 repository:
17
+
18
+ - `morris_28genes_enformer.h5` - Generate with `notebooks/embeddings/Morris_28genes_Enformer.ipynb`
19
+ - `morris_snp_enformer.h5` - Generate with `notebooks/embeddings/Morris_SNP_Enformer.ipynb`
20
+
21
+ These notebooks run Enformer inference on Google Colab and save the embeddings to Google Drive.
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from huggingface_hub import hf_hub_download
27
+
28
+ # Download cell-level effects
29
+ effects_path = hf_hub_download(
30
+ repo_id="nobusama17/CDT2-data",
31
+ filename="morris_celllevel_effects_2361.h5",
32
+ repo_type="dataset"
33
+ )
34
+
35
+ # Download model weights
36
+ model_path = hf_hub_download(
37
+ repo_id="nobusama17/CDT2-data",
38
+ filename="cdt_morris_celllevel_best.pt",
39
+ repo_type="dataset"
40
+ )
41
+ ```
42
+
43
+ ## Data Source
44
+
45
+ - Morris STING-seq v2 dataset (60,505 K562 cells, 447 perturbation loci)
46
+ - Reference: [Morris et al. Science 2023](https://www.science.org/doi/10.1126/science.adh7699)
47
+
48
+ ## Citation
49
+
50
+ ```bibtex
51
+ @article{ota2025cdtii,
52
+ title={Central Dogma Transformer II: An AI Microscope for Understanding Cellular Regulatory Mechanisms},
53
+ author={Ota, Nobuyuki},
54
+ journal={bioRxiv},
55
+ year={2025}
56
+ }
57
+ ```
58
+
59
+ ## License
60
+
61
+ MIT License