Stream-AD / MIDAS

Anomaly Detection on Dynamic (time-evolving) Graphs in Real-time and Streaming manner. Detecting intrusions (DoS and DDoS attacks), frauds, fake rating anomalies.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why source and dest must be int?

rastafrange opened this issue · comments

Hello,

I was wondering why do we need to consider source and dest are int and not strings. Indeed, it would make more sense (to me) because usually, source and dest are IP addresses.
Thanks

Hi,

You are absolute right. Source and destination are usually IP addresses. We just map those strings to integer values to process them and have a fair comparison with the baseline. Our method can be extended to take input as strings as well.

Thanks.