mala-lab / NegPrompt

The official implementation of CVPR 24' Paper "Learning Transferable Negative Prompts for Out-of-Distribution Detection"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Official Implementation of ‘Learning Transferable Negative Prompts for Out-of-Distribution Detection’

Existing prompt learning methods have demonstrated certain capabilities in Out-of-Distribution (OOD) detection, but their lack of perception of OOD images in the target dataset can lead to mismatches between OOD images and In-Distribution (ID) categories, leading to a high false positive rate. To address this issue, we introduce a novel OOD detection method, named `NegPrompt', which is designed to learn a set of negative prompts, each representing a negative connotation of a given class label, to delineate the boundaries between ID and OOD images. It learns such negative prompts with ID data only, eliminating its reliance on external data. Further, current methods assume the availability of samples of all ID classes, rendering them ineffective in open-vocabulary learning scenarios where the inference stage can contain novel ID classes not present in the training data. In contrast, our learned negative prompts are transferable to novel class labels. Experiments on various ImageNet-based benchmarks demonstrate that NegPrompt surpasses state-of-the-art prompt-learning-based OOD detection methods and maintains a consistent lead in hard OOD detection in closed- and open-vocabulary classification scenarios. The full text is available ar Arxiv.

Overall Architecture

method

Installation

The environments for NegPropmt need to be prepared:

conda create -n NegPrompt python=3.8
conda activate NegPrompt
pip install -r requirements.txt

Data preparation

First, make a new directory ./data to store the dataset.

Then download the dataset like https://github.com/AtsuMiyai/LoCoOp did.

Arrange the data directory like this:

NegPrompt
|-- data/
    |-- ImageNet1k/
	|-- ILSVRC/
		|-- Data/
			|-- CLS-LOC/
				|-- train/
				|-- val/
		|protocols/
    |-- iNaturalist/
	|--images/
    |-- SUN/
	|--images/
    |-- Places/
	|--images/
    |-- dtd/
	|--images/
    ...

Train and validation

To train the NegPrompt for convetional OOD:

conda activate NegPrompt
python ./scripts/train_test_ood.py

To train the NegPrompt for hard OOD:

conda activate NegPrompt
python ./scripts/train_test_openset.py

Citation

@inproceedings{li2024learning,
  title={Learning Transferable Negative Prompts for Out-of-Distribution Detection},
  author={Li, Tianqi and Pang, Guansong and Bai, Xiao and Miao, Wenjun and Zheng, Jin},
  booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
  year={2024}
}

About

The official implementation of CVPR 24' Paper "Learning Transferable Negative Prompts for Out-of-Distribution Detection"

License:MIT License


Languages

Language:Python 95.4%Language:Jupyter Notebook 4.6%