Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1020 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 1020 Bytes

f-AnoGAN-PyTorch

An unofficial implementation of f-AnoGAN in PyTorch.

Reference

Dataset

This implementation performs anomaly detection on CIFAR-10. In the common setting we treat one class of CIFAR-10 as normal class and other 9 classes as anomalies. You can specify which class is considered as normal when running fanogan.py in command line by setting the --class argument.

Usage

  • Train a GAN

      python fanogan.py --stage 1 --class NORMAL_CLASS
      python fanogan.py --stage 1 --class 2
      python fanogan256.py --stage 1
    
  • Train an encoder

      python fanogan.py --stage 2 --class NORMAL_CLASS
    
  • Evaluation

      python fanogan.py --eval --class NORMAL_CLASS