Home

Awesome

Open-World Semi-Supervised Learning

Kaidi Cao*, Maria Brbić*, Jure Leskovec

Project website


This repo contains the reference source code in PyTorch of the ORCA algorithm. ORCA is a pipeline that recognizes previously seen classes and discovers novel, never-before-seen classes at the same time.. For more details please check our paper Open-World Semi-Supervised Learning (ICLR '22).

Dependencies

The code is built with following libraries:

Usage

Get Started

We use SimCLR for pretraining. The weights used in our paper can be downloaded in this link.

python orca_cifar.py --dataset cifar100 --labeled-num 50 --labeled-ratio 0.5
python orca_imagenet.py --labeled-num 50 --labeled-ratio 0.5

Citing

If you find our code useful, please consider citing:

@inproceedings{
    cao2022openworld,
    title={Open-World Semi-Supervised Learning},
    author={Kaidi Cao and Maria Brbic and Jure Leskovec},
    booktitle={International Conference on Learning Representations},
    year={2022},
    url={https://openreview.net/forum?id=O-r8LOR-CCA}
}