MingzeDong commited on
Commit
1a5ea50
·
verified ·
1 Parent(s): c6c1c1a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -3
README.md CHANGED
@@ -1,3 +1,59 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - single-cell
5
+ - biology
6
+ - foundation-model
7
+ - in-context-learning
8
+ - transcriptomics
9
+ - genomics
10
+ ---
11
+
12
+ # Stack-Large-Aligned
13
+
14
+ **Stack** is a large-scale encoder-decoder foundation model for single-cell biology. It introduces a novel tabular attention architecture that enables both intra- and inter-cellular information flow, setting cell-by-gene matrix chunks as the basic input data unit. Through in-context learning, Stack offers substantial performance improvements in generalizing biological effects and enables generation of unseen cell profiles in novel contexts.
15
+
16
+ ## Model Details
17
+
18
+ | Property | Value |
19
+ |----------|-------|
20
+ | **Parameters** | 217M |
21
+ | **Architecture** | Tabular Attention (alternating cell-wise and gene-wise attention) |
22
+ | **Model Size** | Large |
23
+ | **Pretraining Data** | Full human scBaseCount (~150M cells) |
24
+ | **Pretraining Epochs** | 10 |
25
+
26
+
27
+ ## Usage
28
+
29
+ ### Installation
30
+ ```bash
31
+ pip install arc-stack
32
+ ```
33
+
34
+ ### Download Model
35
+ ```python
36
+ from huggingface_hub import snapshot_download
37
+
38
+ repo_id = "arcinstitute/Stack-Large-Aligned"
39
+ local_dir = "Stack-Large-Aligned"
40
+ snapshot_download(repo_id=repo_id, repo_type="model", local_dir=local_dir)
41
+ ```
42
+
43
+ For detailed tutorials, see:
44
+ - [Embedding Tutorial](https://github.com/ArcInstitute/stack/blob/main/notebooks/tutorial-embed.ipynb)
45
+
46
+
47
+ ## Citation
48
+
49
+ If you use this model, please cite:
50
+
51
+ - Dong et al., 2025: STACK: In-context modeling of single-cell biology. Preprint.
52
+
53
+ ## License
54
+
55
+ Apache 2.0
56
+
57
+ ## Github Link
58
+
59
+ [https://github.com/ArcInstitute/stack](https://github.com/ArcInstitute/stack)