Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 935 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 935 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
    
  • Train an encoder

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

      python fanogan.py --eval --class NORMAL_CLASS