gReLU Model Zoo
Collection
Zoo of models and datasets associated with https://github.com/Genentech/gReLU/. Copied from the original zoo on Weights and Biases (https://wandb.ai/)
•
17 items
•
Updated
This model is a multi-class classifier trained to classify genomic DNA sequences into one of 16 classes. It was trained by fine-tuning the Enformer model using the grelu library using the MPRA dataset from Gosai et al. 2024 (https://www.nature.com/articles/s41586-024-08070-z).
model.ckpt: The trained model weights and hyperparameters (PyTorch Lightning checkpoint).1_model.ipynb: Jupyter notebook containing the training logic, architecture definition, and evaluation loops.output.log: Training logs.To load this model for inference or fine-tuning, use the grelu interface:
from grelu.lightning import LightningModel
from huggingface_hub import hf_hub_download
ckpt_path = hf_hub_download(
repo_id="Genentech/human-mpra-gosai-2024-model",
filename="model.ckpt"
)
model = LightningModel.load_from_checkpoint(ckpt_path)
model.eval()
Base model
Genentech/enformer-model