├── .gitignore ├── LICENSE ├── README.md ├── common_types.py ├── configs └── train │ └── defectgan-official.yaml ├── data └── .gitkeep ├── dataset.py ├── figure └── .gitkeep ├── inference.py ├── inference2.py ├── model.py ├── results ├── .gitkeep └── pretrained_models │ └── .gitkeep ├── samples └── .gitkeep ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /common_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/common_types.py -------------------------------------------------------------------------------- /configs/train/defectgan-official.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/configs/train/defectgan-official.yaml -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/dataset.py -------------------------------------------------------------------------------- /figure/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/inference.py -------------------------------------------------------------------------------- /inference2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/inference2.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/model.py -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /results/pretrained_models/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimZhang001/Defect_GAN-PyTorch/HEAD/utils.py --------------------------------------------------------------------------------