177-openmatch-open-set-consistency-regularization-for-semi-supervised-learning-with-outliers
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.4%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Basic Info
- Host: GitHub
- Owner: SZU-AdvTech-2023
- Language: Python
- Default Branch: main
- Size: 1.79 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 2 years ago
· Last pushed over 2 years ago
Metadata Files
Citation
https://github.com/SZU-AdvTech-2023/177-OpenMatch-Open-Set-Consistency-Regularization-for-Semi-Supervised-Learning-with-Outliers/blob/main/
## [OpenMatch: Open-set Consistency Regularization for Semi-supervised Learning with Outliers (NeurIPS 2021)](https://arxiv.org/pdf/2105.14148.pdf)

This is an PyTorch implementation of OpenMatch.
This implementation is based on [Pytorch-FixMatch](https://github.com/kekmodel/FixMatch-pytorch).
## Requirements
- python 3.6+
- torch 1.4
- torchvision 0.5
- tensorboard
- numpy
- tqdm
- sklearn
- apex (optional)
See [Pytorch-FixMatch](https://github.com/kekmodel/FixMatch-pytorch) for the details.
## Usage
### Dataset Preparation
This repository needs CIFAR10, CIFAR100, or ImageNet-30 to train a model.
To fully reproduce the results in evaluation, we also need SVHN, LSUN, ImageNet
for CIFAR10, 100, and LSUN, DTD, CUB, Flowers, Caltech_256, Stanford Dogs for ImageNet-30.
To prepare the datasets above, follow [CSI](https://github.com/alinlab/CSI).
```
mkdir data
ln -s path_to_each_dataset ./data/.
## unzip filelist for imagenet_30 experiments.
unzip files.zip
```
All datasets are supposed to be under ./data.
### Train
Train the model by 50 labeled data per class of CIFAR-10 dataset:
```
sh run_cifar10.sh 50 save_directory
```
Train the model by 50 labeled data per class of CIFAR-100 dataset, 55 known classes:
```
sh run_cifar100.sh 50 10 save_directory
```
Train the model by 50 labeled data per class of CIFAR-100 dataset, 80 known classes:
```
sh run_cifar100.sh 50 15 save_directory
```
Run experiments on ImageNet-30:
```
sh run_imagenet.sh save_directory
```
### Evaluation
Evaluate a model trained on cifar10
```
sh run_eval_cifar10.sh trained_model.pth
```
### Trained models
Coming soon.
- [CIFAR10-50-labeled](https://drive.google.com/file/d/1oNWAR8jVlxQXH0TMql1P-c7_i5-taU2T/view?usp=sharing)
- [CIFAR100-50-labeled-55class](https://drive.google.com/file/d/1T5a_p4XUEOexEnjLWpGd-3pme4OzJ2pP/view?usp=sharing)
- ImageNet-30
### Acknowledgement
This repository depends a lot on [Pytorch-FixMatch](https://github.com/kekmodel/FixMatch-pytorch) for FixMatch implementation, and [CSI](https://github.com/alinlab/CSI) for anomaly detection evaluation.
Thanks for sharing the great code bases!
### Reference
This repository is contributed by [Kuniaki Saito](http://cs-people.bu.edu/keisaito/).
If you consider using this code or its derivatives, please consider citing:
```
@article{saito2021openmatch,
title={OpenMatch: Open-set Consistency Regularization for Semi-supervised Learning with Outliers},
author={Saito, Kuniaki and Kim, Donghyun and Saenko, Kate},
journal={arXiv preprint arXiv:2105.14148},
year={2021}
}
```
Owner
- Name: SZU-AdvTech-2023
- Login: SZU-AdvTech-2023
- Kind: organization
- Repositories: 1
- Profile: https://github.com/SZU-AdvTech-2023