Code to reproduce the main results in the paper Multi-Label Learning from Single Positive Labels (CVPR 2021).
See the README.md
file in the data
directory for instructions on downloading and setting up the datasets.
To train and evaluate a model, run:
python train.py
To generate different entries of the main table, modify the following parameters:
dataset
: Which dataset to use.loss
: Which loss to use.train_mode
: Whether to (a) train a linear classifier on top of pre-extracted features, (b) train end-to-end, or (c) do (a) followed by (b).val_set_variant
: Whether to use a clean val set or a validation set where a single positive is observed for each image.As written, train.py
will run a hyperparameter search over a few different learning rates and batch sizes, save the results for all runs, and report the best run. If desired, modify the code at the bottom of train.py
to search over different parameter settings.
The linear_init
mode searches over hyperparameters for the fine-tuning phase only. The hyperparameters for the linear training phase are fixed. In particular, linear_init_lr
and linear_init_bsize
are set to the best learning rate and batch size from a linear_fixed_features
hyperparameter search.
requirements.txt
files was generated using the wonderful tool pipreqs.data/README.md
should yield the exact subset used for our experiments. If you find our work useful in your research please consider citing our paper:
@inproceedings{cole2021multi,
title={Multi-Label Learning from Single Positive Labels},
author={Cole, Elijah and
Mac Aodha, Oisin and
Lorieul, Titouan and
Perona, Pietro and
Morris, Dan and
Jojic, Nebojsa},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
year={2021}
}