Paper Presentation - IDS
Paper Presentation - IDS
IDS
Intrusion is an attempt to breach your confidentiality, Integrity & Availability.
Intrusion Detection is the process of monitoring these intrusions and detecting them.
So we split the train and test data as per the suggested ratio.
Once the split is done, data is preprocessed i.e. we cleaned the data by handling nulls and
dropping irrelevant features.
After selecting features, we ran all the machine learning and deep learning models.
Then measures the performance with the help of accuracy, precision, recall, and F1-score with
the help of standard formulas.
So here is the comparison of the performance of all the models applied for eg: Dark blue
represents True Positives which means those are accurately predicted so if you notice random
forest gives the highest going more into the results.
Random Forest is giving me the highest accuracy, Recall, precision, and F1-score and less time
to predict the data set.
("Random Forest is a classifier that contains a number of decision trees on various subsets of
the given dataset and takes the average to improve the predictive accuracy of that dataset."
Instead of relying on one decision tree, the random forest takes the prediction from each tree
and based on the majority votes of predictions, and it predicts the final output.
The greater number of trees in the forest leads to higher accuracy and prevents the problem of
overfitting.
)
So our approach is kind of shown better accuracy than the base paper where they have an SVM
(support vector machine) & ANN(artificial neural network) model having an accuracy of 95% by
using Random forest we have increased the accuracy to 97%.
As in real life as our model provided greater accuracy in classification so it can be used to meet
security regulations.
We think that our performance can be improved in our model by data mining and data
clustering.