Views
No views yet
grelu library on the MPRA dataset from Gosai et al. 2024 (https://www.nature.com/articles/s41586-024-08070-z).| Split | MSE | Pearson |
|---|---|---|
| Validation | 0.3999 | 0.8911 |
| Test | 0.3392 | 0.8550 |
| Parameter | Value |
|---|---|
| Task | Regression |
| Loss | MSE |
| Optimizer | Adam |
| Learning rate | 0.0001 |
| Batch size | 512 |
| Max epochs | 50 |
| grelu version | 1.0.4.post1.dev39 |
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.grelu interface:1from grelu.lightning import LightningModel
2from huggingface_hub import hf_hub_download
3
4ckpt_path = hf_hub_download(
5 repo_id="Genentech/human-mpra-gosai-2024-model",
6 filename="model.ckpt"
7)
8
9model = LightningModel.load_from_checkpoint(ckpt_path, weights_only=False)
10model.eval()