GreenGenomicsLab/TARA-WorldModel-VICReg
TARA-WorldModel-VICReg
Joint environment-proteome embedding model using VICReg (Variance-Invariance-Covariance Regularization) self-supervised learning, applied to the TARA Oceans metagenomic dataset. This model aligns environmental and Pfam protein domain representations in a shared 32-dimensional latent space.
This model represents an exploratory methodological approach deposited for transparency and reproducibility. The XGBoost bidirectional framework (TARA-XGBoost-Bidirectional) was retained as the primary modeling approach in the ELF-NET study.
Architecture
Environment branch: Input(env_dim) -> Linear(hidden) -> ReLU -> Dropout(0.3) -> Linear(32)
Pfam branch: Input(pfam_dim) -> Linear(hidden) -> ReLU -> Dropout(0.3) -> Linear(32)Training Data
Performance
6-Fold Leave-One-Basin-Out (LOBO) CV
9-Fold Spatial Block CV (matching primary XGBoost design)
The negative R² under spatial CV reflects the MLP architecture's sensitivity to distribution shift on spatially distinctive held-out basins (Mediterranean, mid-Pacific), a known limitation of shallow neural networks on small tabular datasets (N ~ 1,100). This is an architecture confound, not evidence against the Pfam alignment signal itself.
Repository Contents
Usage
import torch
checkpoint = torch.load(
"checkpoints/20260127_111754/world_model_fold_Arctic_20260127_111754.pt",
map_location="cpu",
weights_only=False
)
state_dict = checkpoint["model_state_dict"]Related Resources
References
- Bardes, A., Ponce, J., & LeCun, Y. (2022). VICReg: Variance-Invariance-Covariance Regularization for Self-Supervised Learning. ICLR 2022.
Authors
David R. Nelson, Kourosh Salehi-Ashtiani
New York University Abu Dhabi
Citation
@article{nelson2026elfnet,
title = {Coupling of oceanographic state to the dark proteome: a foundation for genome-informed marine productivity modeling},
author = {Nelson, David Roy and Plouviez, Maxence and Daakour, Sarah and Jaiswal, Ashish and Fu, Weiqi and Amin, Shady A. and Salehi-Ashtiani, Kourosh},
journal = {Forthcoming},
year = {2026}
}Contact
Kourosh Salehi-Ashtiani -- ksa3@nyu.edu
