Update README.md
Browse files
README.md
CHANGED
@@ -3,4 +3,34 @@ datasets:
|
|
3 |
- yangyz1230/space
|
4 |
---
|
5 |
|
6 |
-
This is the official implementation of the ICML 2025 poster paper "SPACE: Your Genomic Profile Predictor is a Powerful DNA Foundation Model".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
- yangyz1230/space
|
4 |
---
|
5 |
|
6 |
+
This is the official implementation of the ICML 2025 poster paper "SPACE: Your Genomic Profile Predictor is a Powerful DNA Foundation Model".
|
7 |
+
|
8 |
+
## Usage
|
9 |
+
|
10 |
+
You should first download the source code from github:
|
11 |
+
```
|
12 |
+
git clone https://github.com/ZhuJiwei111/SPACE
|
13 |
+
cd SPACE
|
14 |
+
```
|
15 |
+
|
16 |
+
Then you can access the model through:
|
17 |
+
```
|
18 |
+
from model.modeling_space import Space
|
19 |
+
|
20 |
+
model_name_or_path = "yangyz1230/space"
|
21 |
+
model = Space.from_pretrained(model_name_or_path)
|
22 |
+
```
|
23 |
+
|
24 |
+
## Citation
|
25 |
+
|
26 |
+
```
|
27 |
+
@misc{yang2025spacegenomicprofilepredictor,
|
28 |
+
title={SPACE: Your Genomic Profile Predictor is a Powerful DNA Foundation Model},
|
29 |
+
author={Zhao Yang and Jiwei Zhu and Bing Su},
|
30 |
+
year={2025},
|
31 |
+
eprint={2506.01833},
|
32 |
+
archivePrefix={arXiv},
|
33 |
+
primaryClass={cs.LG},
|
34 |
+
url={https://arxiv.org/abs/2506.01833},
|
35 |
+
}
|
36 |
+
```
|