├── .gitignore ├── LICENSE ├── README.md ├── Results.ipynb ├── image ├── 0045.PNG └── sample_detection.png ├── main.py ├── model.py ├── model └── best_model_25_loss=-2.150636353559904e-06.pth └── trainer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/README.md -------------------------------------------------------------------------------- /Results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/Results.ipynb -------------------------------------------------------------------------------- /image/0045.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/image/0045.PNG -------------------------------------------------------------------------------- /image/sample_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/image/sample_detection.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/model.py -------------------------------------------------------------------------------- /model/best_model_25_loss=-2.150636353559904e-06.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/model/best_model_25_loss=-2.150636353559904e-06.pth -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msminhas93/anomaly-detection-using-autoencoders/HEAD/trainer.py --------------------------------------------------------------------------------