Detecting malicious executable files using machine learning Dir tree ├── KNN │ └── knn_train.py ├── NaiveBayes │ └── NaiveBayes_train.py ├── SVM │ └── svm_train.py ├── TestData │ └── test.txt - testing set ├── TrainData └── dataset.train - training set Needed libs sklearn numpy Run cd KNN python3 knn_train.py