moco
PyTorch implementation of MoCo: https://arxiv.org/abs/1911.05722
view repo
Contrastive unsupervised learning has recently shown encouraging progress, e.g., in Momentum Contrast (MoCo) and SimCLR. In this note, we verify the effectiveness of two of SimCLR's design improvements by implementing them in the MoCo framework. With simple modifications to MoCo—namely, using an MLP projection head and more data augmentation—we establish stronger baselines that outperform SimCLR and do not require large training batches. We hope this will make state-of-the-art unsupervised learning research more accessible. Code will be made public.
READ FULL TEXTPyTorch implementation of MoCo: https://arxiv.org/abs/1911.05722
Video Noise Contrastive Estimation
TF 2.x implementation of MoCo v1 (Momentum Contrast for Unsupervised Visual Representation Learning, CVPR 2020) and MoCo v2 (Improved Baselines with Momentum Contrastive Learning, 2020).
Code accompagning the paper: Integration Categorical Semantics into Unsupervised Domain Translation: https://arxiv.org/abs/2010.01262.
None