This model is a multi-task classifier trained to predict the binary accessibility of genomic DNA sequences in 204 cell types. It was trained by fine-tuning the Enformer model using the grelu library on the human ATAC CATlas dataset.
Metrics are computed per cell type and averaged across all 204 cell types.
1from grelu.lightning import LightningModel
2from huggingface_hub import hf_hub_download
3
4ckpt_path = hf_hub_download(
5 repo_id="Genentech/human-atac-catlas-model",
6 filename="model.ckpt"
7)
8
9model = LightningModel.load_from_checkpoint(ckpt_path, weights_only=False)
10model.eval()