├── .gitignore ├── DNN ├── cm.png ├── dnn.py ├── dnn.txt ├── dnn_model.sav ├── dnn_model1.sav ├── model_1.h5 └── predict.py ├── Dataset ├── .gitattributes └── How to get the data.txt ├── DecisionTree ├── 7_cm_dt.png ├── DecisionTree.ipynb ├── cm.png ├── decisiontree.py ├── decisiontree.txt ├── decisiontree_model.sav └── predict.py ├── KNN ├── cm.png ├── knn.py ├── knn.txt ├── knn_3_model.sav └── predict.py ├── README.md ├── RandomForest ├── cm.png ├── predict.py ├── randomforest.py ├── randomforest.txt └── randomforest_model.sav ├── dictionary.py └── test.txt /.gitignore: -------------------------------------------------------------------------------- 1 | network_traffic.csv 2 | -------------------------------------------------------------------------------- /DNN/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DNN/cm.png -------------------------------------------------------------------------------- /DNN/dnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DNN/dnn.py -------------------------------------------------------------------------------- /DNN/dnn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DNN/dnn.txt -------------------------------------------------------------------------------- /DNN/dnn_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DNN/dnn_model.sav -------------------------------------------------------------------------------- /DNN/dnn_model1.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DNN/dnn_model1.sav -------------------------------------------------------------------------------- /DNN/model_1.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DNN/model_1.h5 -------------------------------------------------------------------------------- /DNN/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DNN/predict.py -------------------------------------------------------------------------------- /Dataset/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/Dataset/.gitattributes -------------------------------------------------------------------------------- /Dataset/How to get the data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/Dataset/How to get the data.txt -------------------------------------------------------------------------------- /DecisionTree/7_cm_dt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DecisionTree/7_cm_dt.png -------------------------------------------------------------------------------- /DecisionTree/DecisionTree.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DecisionTree/DecisionTree.ipynb -------------------------------------------------------------------------------- /DecisionTree/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DecisionTree/cm.png -------------------------------------------------------------------------------- /DecisionTree/decisiontree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DecisionTree/decisiontree.py -------------------------------------------------------------------------------- /DecisionTree/decisiontree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DecisionTree/decisiontree.txt -------------------------------------------------------------------------------- /DecisionTree/decisiontree_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DecisionTree/decisiontree_model.sav -------------------------------------------------------------------------------- /DecisionTree/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/DecisionTree/predict.py -------------------------------------------------------------------------------- /KNN/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/KNN/cm.png -------------------------------------------------------------------------------- /KNN/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/KNN/knn.py -------------------------------------------------------------------------------- /KNN/knn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/KNN/knn.txt -------------------------------------------------------------------------------- /KNN/knn_3_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/KNN/knn_3_model.sav -------------------------------------------------------------------------------- /KNN/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/KNN/predict.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/README.md -------------------------------------------------------------------------------- /RandomForest/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/RandomForest/cm.png -------------------------------------------------------------------------------- /RandomForest/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/RandomForest/predict.py -------------------------------------------------------------------------------- /RandomForest/randomforest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/RandomForest/randomforest.py -------------------------------------------------------------------------------- /RandomForest/randomforest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/RandomForest/randomforest.txt -------------------------------------------------------------------------------- /RandomForest/randomforest_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/RandomForest/randomforest_model.sav -------------------------------------------------------------------------------- /dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/dictionary.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritom007/Network-Traffic-Classification/HEAD/test.txt --------------------------------------------------------------------------------