├── .gitignore ├── Dataset └── HDFS │ ├── hdfs_test_abnormal │ ├── hdfs_test_normal │ └── hdfs_train ├── Parsers ├── Drain.py └── Spell.py ├── README.md ├── Transformer.py ├── detection.ipynb ├── detection_model.py ├── env └── environment.yml └── images ├── all.jpg ├── arch.PNG ├── arch.png ├── attention.jpg ├── detection.png ├── end-to-end.png ├── flow.png ├── hdfs_anomaly_line.png ├── hdfs_normal_line.png ├── model.png ├── model2.png ├── model3.png ├── multi-attention.jpg ├── training.png ├── transformer_1.png ├── transformer_2.png ├── transformer_3.png └── transformer_4.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/.gitignore -------------------------------------------------------------------------------- /Dataset/HDFS/hdfs_test_abnormal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/Dataset/HDFS/hdfs_test_abnormal -------------------------------------------------------------------------------- /Dataset/HDFS/hdfs_test_normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/Dataset/HDFS/hdfs_test_normal -------------------------------------------------------------------------------- /Dataset/HDFS/hdfs_train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/Dataset/HDFS/hdfs_train -------------------------------------------------------------------------------- /Parsers/Drain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/Parsers/Drain.py -------------------------------------------------------------------------------- /Parsers/Spell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/Parsers/Spell.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/README.md -------------------------------------------------------------------------------- /Transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/Transformer.py -------------------------------------------------------------------------------- /detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/detection.ipynb -------------------------------------------------------------------------------- /detection_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/detection_model.py -------------------------------------------------------------------------------- /env/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/env/environment.yml -------------------------------------------------------------------------------- /images/all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/all.jpg -------------------------------------------------------------------------------- /images/arch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/arch.PNG -------------------------------------------------------------------------------- /images/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/arch.png -------------------------------------------------------------------------------- /images/attention.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/attention.jpg -------------------------------------------------------------------------------- /images/detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/detection.png -------------------------------------------------------------------------------- /images/end-to-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/end-to-end.png -------------------------------------------------------------------------------- /images/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/flow.png -------------------------------------------------------------------------------- /images/hdfs_anomaly_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/hdfs_anomaly_line.png -------------------------------------------------------------------------------- /images/hdfs_normal_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/hdfs_normal_line.png -------------------------------------------------------------------------------- /images/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/model.png -------------------------------------------------------------------------------- /images/model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/model2.png -------------------------------------------------------------------------------- /images/model3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/model3.png -------------------------------------------------------------------------------- /images/multi-attention.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/multi-attention.jpg -------------------------------------------------------------------------------- /images/training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/training.png -------------------------------------------------------------------------------- /images/transformer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/transformer_1.png -------------------------------------------------------------------------------- /images/transformer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/transformer_2.png -------------------------------------------------------------------------------- /images/transformer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/transformer_3.png -------------------------------------------------------------------------------- /images/transformer_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunbaruah/Anomaly_Detection_Transformer/HEAD/images/transformer_4.png --------------------------------------------------------------------------------