TL;DR
This paper introduces a novel neural network architecture combining GRU and SVM for improved intrusion detection in network traffic, demonstrating higher accuracy and faster prediction times than traditional GRU-Softmax models.
Contribution
It replaces the Softmax layer with an SVM in a GRU model for binary intrusion detection, showing enhanced accuracy and efficiency.
Findings
GRU-SVM achieved ~84.15% test accuracy
Outperformed GRU-Softmax in prediction time
SVM layer improved model performance
Abstract
Gated Recurrent Unit (GRU) is a recently-developed variation of the long short-term memory (LSTM) unit, both of which are types of recurrent neural network (RNN). Through empirical evidence, both models have been proven to be effective in a wide variety of machine learning tasks such as natural language processing (Wen et al., 2015), speech recognition (Chorowski et al., 2015), and text classification (Yang et al., 2016). Conventionally, like most neural networks, both of the aforementioned RNN variants employ the Softmax function as its final output layer for its prediction, and the cross-entropy function for computing its loss. In this paper, we present an amendment to this norm by introducing linear support vector machine (SVM) as the replacement for Softmax in the final output layer of a GRU model. Furthermore, the cross-entropy function shall be replaced with a margin-based…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
MethodsSoftmax · Gated Recurrent Unit
