oxicuda-ssl 0.1.6

Self-supervised learning primitives for OxiCUDA: SimCLR, MoCo, BYOL, Barlow Twins, VICReg, MAE, SwAV, DINO — pure Rust, zero CUDA SDK dependency.
Documentation
1
2
3
4
5
6
7
8
9
//! Non-contrastive SSL losses: BYOL (cosine target), Barlow Twins
//! (cross-correlation), VICReg (variance + invariance + covariance).
//!
//! These methods avoid explicit negatives and instead use either a target
//! network (BYOL) or a redundancy-reduction objective (Barlow / VICReg).

pub mod barlow;
pub mod byol;
pub mod vicreg;