AI Engineer at Nuiva
As a passionate Data Scientist, I combine advanced analytical skills with programming and modeling expertise to solve complex problems and transform data into informed decisions.
I am currently working as an AI Engineer at Nuiva, where I am responsible for developing and deploying machine learning models to improve the performance of the company's products.
This machine learning project focuses on developing a classifier to accurately differentiate between intrusive (malicious) and non-intrusive (benign) network traffic.
The objective of this project is to analyze and evaluate methods within the field of intrusion detection. Utilizing a comprehensive dataset, a predictive model was developed to classify network connections as either normal or as various types of attacks, with precise categorization for each specific attack type.
The dataset utilized in this project is derived from a network environment emulating a standard U.S. Air Force LAN, infused with a variety of simulated attacks. The data, provided by Lincoln Labs, encompasses nine weeks of raw TCP dump data processed into connection records, each uniquely labeled and detailed.
The dataset can be accessed here.
Within these records, each connection is defined by a series of TCP packets occurring between well-defined times, moving data between source and destination IP addresses under specified protocols. The connections are annotated as normal or as one of the following types of attacks:
To gain insights into the distribution and clustering of the network connections, we utilized the t-SNE (t-Distributed Stochastic Neighbor Embedding) algorithm for dimensionality reduction and visualization. The t-SNE plot below represents the network connections in a two-dimensional space, where each point corresponds to a connection record.
The t-SNE plot provides a visual representation of the relationships between different types of network connections. It helps us understand the patterns and similarities among the connections, which can be useful for identifying clusters and potential anomalies.
By examining the t-SNE plot, we can observe the separation between different attack types and normal connections. This visualization aids in understanding the effectiveness of our model in distinguishing between intrusive and non-intrusive network traffic.
Here are the classification metrics for our baseline Random Forest model:
Class | Precision | Recall | F1-Score | Support |
---|---|---|---|---|
dos | 1.00 | 1.00 | 1.00 | 78292 |
normal | 1.00 | 1.00 | 1.00 | 19456 |
probe | 1.00 | 1.00 | 1.00 | 822 |
r2l | 1.00 | 0.96 | 0.98 | 225 |
u2r | 0.75 | 0.60 | 0.67 | 10 |
Accuracy | 1.00 | 98805 | ||
Macro Avg | 0.95 | 0.91 | 0.93 | 98805 |
Weighted Avg | 1.00 | 1.00 | 1.00 | 98805 |
F1 Score (average weighted) 99.9752%
Following the application of SMOTE to address class imbalance, here are the updated metrics:
Class | Precision | Recall | F1-Score | Support |
---|---|---|---|---|
dos | 1.00 | 1.00 | 1.00 | 78292 |
normal | 1.00 | 1.00 | 1.00 | 19456 |
probe | 1.00 | 0.99 | 1.00 | 821 |
r2l | 1.00 | 0.98 | 0.99 | 225 |
u2r | 0.99 | 1.00 | 1.00 | 200 |
Accuracy | 1.00 | 98994 | ||
Macro Avg | 1.00 | 0.99 | 1.00 | 98994 |
Weighted Avg | 1.00 | 1.00 | 1.00 | 98994 |
F1 Score (average weighted) 99.9827%