├── IDS_Deeplearning ├── .gitignore ├── 4 attacks distributions.jpg ├── KDD_Data_Labels.png ├── MLP_nets.py ├── SYS_VARS.py ├── __pycache__ │ ├── MLP_nets.cpython-35.pyc │ ├── SYS_VARS.cpython-35.pyc │ ├── analysis_functions.cpython-35.pyc │ ├── autoencoders.cpython-35.pyc │ ├── desktop.ini │ ├── load_dataset.cpython-35.pyc │ └── softmax_classifier.cpython-35.pyc ├── analysis_functions.py ├── attacks_classified.jpg ├── autoencoders.py ├── desktop.ini ├── load_dataset.py ├── main_dl_experiments.py ├── softmax_classifier.py └── test ├── LICENSE.md ├── README.md └── examples ├── Autoencoders_ex ├── IMAGES.mat └── autoencoders.py └── MultiLayerPerceptron_ex ├── MLP_nets.py ├── MLP_nets_sknn.py ├── __pycache__ ├── MLP_1x64.cpython-35.pyc └── MLP_nets.cpython-35.pyc ├── main_mlp.py ├── mlp_example.py └── multilayer_perceptron_playfunctions.py /IDS_Deeplearning/.gitignore: -------------------------------------------------------------------------------- 1 | KDDCup/ 2 | NSL-KDD/ -------------------------------------------------------------------------------- /IDS_Deeplearning/4 attacks distributions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/4 attacks distributions.jpg -------------------------------------------------------------------------------- /IDS_Deeplearning/KDD_Data_Labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/KDD_Data_Labels.png -------------------------------------------------------------------------------- /IDS_Deeplearning/MLP_nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/MLP_nets.py -------------------------------------------------------------------------------- /IDS_Deeplearning/SYS_VARS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/SYS_VARS.py -------------------------------------------------------------------------------- /IDS_Deeplearning/__pycache__/MLP_nets.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/__pycache__/MLP_nets.cpython-35.pyc -------------------------------------------------------------------------------- /IDS_Deeplearning/__pycache__/SYS_VARS.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/__pycache__/SYS_VARS.cpython-35.pyc -------------------------------------------------------------------------------- /IDS_Deeplearning/__pycache__/analysis_functions.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/__pycache__/analysis_functions.cpython-35.pyc -------------------------------------------------------------------------------- /IDS_Deeplearning/__pycache__/autoencoders.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/__pycache__/autoencoders.cpython-35.pyc -------------------------------------------------------------------------------- /IDS_Deeplearning/__pycache__/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/__pycache__/desktop.ini -------------------------------------------------------------------------------- /IDS_Deeplearning/__pycache__/load_dataset.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/__pycache__/load_dataset.cpython-35.pyc -------------------------------------------------------------------------------- /IDS_Deeplearning/__pycache__/softmax_classifier.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/__pycache__/softmax_classifier.cpython-35.pyc -------------------------------------------------------------------------------- /IDS_Deeplearning/analysis_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/analysis_functions.py -------------------------------------------------------------------------------- /IDS_Deeplearning/attacks_classified.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/attacks_classified.jpg -------------------------------------------------------------------------------- /IDS_Deeplearning/autoencoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/autoencoders.py -------------------------------------------------------------------------------- /IDS_Deeplearning/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/desktop.ini -------------------------------------------------------------------------------- /IDS_Deeplearning/load_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/load_dataset.py -------------------------------------------------------------------------------- /IDS_Deeplearning/main_dl_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/main_dl_experiments.py -------------------------------------------------------------------------------- /IDS_Deeplearning/softmax_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/IDS_Deeplearning/softmax_classifier.py -------------------------------------------------------------------------------- /IDS_Deeplearning/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/README.md -------------------------------------------------------------------------------- /examples/Autoencoders_ex/IMAGES.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/Autoencoders_ex/IMAGES.mat -------------------------------------------------------------------------------- /examples/Autoencoders_ex/autoencoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/Autoencoders_ex/autoencoders.py -------------------------------------------------------------------------------- /examples/MultiLayerPerceptron_ex/MLP_nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/MultiLayerPerceptron_ex/MLP_nets.py -------------------------------------------------------------------------------- /examples/MultiLayerPerceptron_ex/MLP_nets_sknn.py: -------------------------------------------------------------------------------- 1 | from sknn import mlp 2 | -------------------------------------------------------------------------------- /examples/MultiLayerPerceptron_ex/__pycache__/MLP_1x64.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/MultiLayerPerceptron_ex/__pycache__/MLP_1x64.cpython-35.pyc -------------------------------------------------------------------------------- /examples/MultiLayerPerceptron_ex/__pycache__/MLP_nets.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/MultiLayerPerceptron_ex/__pycache__/MLP_nets.cpython-35.pyc -------------------------------------------------------------------------------- /examples/MultiLayerPerceptron_ex/main_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/MultiLayerPerceptron_ex/main_mlp.py -------------------------------------------------------------------------------- /examples/MultiLayerPerceptron_ex/mlp_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/MultiLayerPerceptron_ex/mlp_example.py -------------------------------------------------------------------------------- /examples/MultiLayerPerceptron_ex/multilayer_perceptron_playfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clazarom/DeepLearning_IDS/HEAD/examples/MultiLayerPerceptron_ex/multilayer_perceptron_playfunctions.py --------------------------------------------------------------------------------