We propose a single-cell foundation model, CellFM.
The official implementation for "CellFM".
Table of Contents
We provide easy access to the used datasets in the synapse.
To reproduce CellFM, we suggest first create a conda environment by:
conda create -n CellFM python=3.9
conda activate CellFM
and then install the required packages below:
- mindspore=2.2.10
- scanpy=1.10
- gears
- torch
To run CellFM, we need to first preprocess the data in h5 or h5ad format. The preprocessing pipeline for different downstream tasks can refer to process.ipynb. We recommend storing the processed datasets in the datasets directory.
We provided a script train.py for finetuning or training on new datasets. For example, we can train on the HumanPBMC dataset with a single NPU device by executing:
# Train with single device
python train.py --data HumanPBMC --batch 4 --epoch 5 --load_pretrain [--fp16] [--lora LORA_RANK] [--workpath /DIR/TO/WORKSPACE]
- --data: dataset name. Note that the dataset should be located in /DIR/TO/WORKSPACE/datasets with h5 or h5ad format.
- --batch: batch size.
- --epoch: the number of training epochs.
- --load_pretrain: load the pretrained weight of CellFM.
- --fp16: unnecessary. Set the training process under half-precision mode.
- --lora: unnecessary. Using the LoRA algorithm to update the weights using LORA_RANK as the hidden dimension of lora block, default 0 i.e. not use LoRA.
- --workpath: unnecessary when training with a single device. Set the absolute directory of the work path and default the directory containing codes.
We also provide a script to apply parallel training within one node. For the same example, the command below works the same as the command above except it will works on 8 devices while each device handle an input with batch size=4.
# Train parallelly in one node
bash 1node_train.sh train 4 5 HumanPBMC
See CellAnnotation.ipynb.
See GeneFunction.ipynb.
If you find our codes useful, please consider citing our work:
@article{CellFM,
title={CellFM: a large-scale foundation model pre-trained on transcriptomics of 100 million human cells},
author={Yuansong Zeng, Jiancong Xie, Zhuoyi Wei, Yun Su, Ningyuan Shangguan, Shuangyu Yang, Chengyang Zhang, Wenbing Li, Jinbo Zhang, Nan Fang, Hongyu Zhang, Huiying Zhao, Yutong Lu, Jue Fan, Weijiang Yu, and Yuedong Yang},
journal={},
year={2024},
}