├── LICENSE ├── README.md ├── main_lincls.py ├── moco-non-sem-neg.py ├── moco ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── builder.cpython-38.pyc │ └── loader.cpython-38.pyc ├── builder.py └── loader.py └── preprocess ├── README.md ├── imagenet_100_subset.py └── imangenet_texture_syn.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/README.md -------------------------------------------------------------------------------- /main_lincls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/main_lincls.py -------------------------------------------------------------------------------- /moco-non-sem-neg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/moco-non-sem-neg.py -------------------------------------------------------------------------------- /moco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moco/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/moco/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /moco/__pycache__/builder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/moco/__pycache__/builder.cpython-38.pyc -------------------------------------------------------------------------------- /moco/__pycache__/loader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/moco/__pycache__/loader.cpython-38.pyc -------------------------------------------------------------------------------- /moco/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/moco/builder.py -------------------------------------------------------------------------------- /moco/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/moco/loader.py -------------------------------------------------------------------------------- /preprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/preprocess/README.md -------------------------------------------------------------------------------- /preprocess/imagenet_100_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/preprocess/imagenet_100_subset.py -------------------------------------------------------------------------------- /preprocess/imangenet_texture_syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songweige/Contrastive-Learning-with-Non-Semantic-Negatives/HEAD/preprocess/imangenet_texture_syn.py --------------------------------------------------------------------------------