oxicuda-ssl 0.2.0

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
10
11
12
13
//! Non-contrastive SSL losses: BYOL (cosine target), Barlow Twins
//! (cross-correlation), VICReg (variance + invariance + covariance),
//! SimSiam (stop-gradient cosine), and MSN (masked siamese networks).
//!
//! These methods avoid explicit negatives and instead use either a target
//! network (BYOL, MSN) or a redundancy-reduction objective (Barlow / VICReg).

pub mod barlow;
pub mod byol;
pub mod dense_cl;
pub mod msn;
pub mod simsiam;
pub mod vicreg;