June 2019
Intermediate to advanced
308 pages
7h 21m
English
Data preprocessing is an essential step for a DL pipeline. The CPU utilization dataset is ready to be used in the training, but the KDD cup 1999 IDS dataset needs multilevel preprocessing that includes the following three steps:
Using the following lines of code is a potential way of splitting the dataset into three datasets, namely Final_App_Layer, Final_Transport_Layer, and Final_Network_Layer:
#Importing all the required Librariesimport pandas as pdIDSdata = pd.read_csv("kddcup.data_10_percent.csv",header = None,engine = 'python',sep=",") ...Read now
Unlock full access