boschresearch / LatentOE-AD

Coder of the paper 'Latent Outlier Exposure for Anomaly Detectin with Contaminated Data' published in ICML 2022
GNU Affero General Public License v3.0
37 stars 10 forks source link
anomaly-detection deep-learning paper-resource

Latent Outlier Exposure for Anomaly Detection with Contaminated Data (LOE)

This is the companion code for a PyTorch implementation of Latent Outlier Exposure reported in the paper Latent Outlier Exposure for Anomaly Detection with Contaminated Data by Chen Qiu et al. The paper is published in ICML 2022 and can be found here https://arxiv.org/abs/2202.08088. The code allows the users to reproduce and extend the results reported in the study. Please cite the above paper when reporting, reproducing or extending the results.

Purpose of the project

This software is a research prototype, solely developed for and published as part of the publication cited above. It will neither be maintained nor monitored in any way.

Reproduce the Results

This repo contains the code of experiments with LOE on various data types including image data and tabular data. The implementation of the backbone anomaly detector (Neural Transformation Learning) is based on the code from https://github.com/boschresearch/NeuTraL-AD.

Please run the command and replace \$# with available options (see below):

python Launch_Exps.py --config-file $1 --dataset-name $2  --contamination $3

config-file:

dataset-name:

contamination:

How to Use

  1. When using your own data, please put your data files under DATA.

  2. Create a config file which contains your hyper-parameters under config_files.

  3. Add your data loader to the function ''load_data'' in the loader/LoadData.py.

    • The shape is (batch size, feature dim).

Datasets

Latent Outlier Exposure for Anomaly Detection with Contaminated Data (LOE) is open-sourced under the AGPL-3.0 license. See the LICENSE file for details.

For a list of other open source components included in Latent Outlier Exposure for Anomaly Detection with Contaminated Data (LOE) , see the file 3rd-party-licenses.txt.