I am using CSIC 2010 dataset for Network Intrusion Detection. I find it difficult to preprocess the HTTP packet captured. Are there any ways I can easily preprocess data so that good accuracy is achieved?
Multilayer Perceptron (MLP) is used, it is one of the most common and well-known Feedforward Neural Network (FFNN) models.
It permits the data flow to travel one way, from input to output. There is no feedback; it tends to be straight-forward networks that companion inputs with outputs. Any MLP network can be distinguished by a number of performance characteristics, which can be summarized in three points:
- Neural Network Architecture.
- Training Algorithm.
- Transfer Function.
Sigmoid Function is one of the most commonly used transfer functions. The use of the sigmoid function has an advantage in neural networks trained by a backpropagation
learning algorithm, this function responsible for reducing the errors , so it guarantees the security term.