In logadempirical/logdeep/dataset/sample.py line 161, the value of sequential_pattern is set to empty list:
sequential_pattern = []
which is the main input of deeplog model. It caused an error during running deeplog saying the input is empty.
However, according to logdeep rep, this feature is supposed to be initialized as:
sequential_pattern = line[i:i + window_size]
Please update the code.
In logadempirical/logdeep/dataset/sample.py line 161, the value of sequential_pattern is set to empty list:
sequential_pattern = []
which is the main input of deeplog model. It caused an error during running deeplog saying the input is empty.
However, according to logdeep rep, this feature is supposed to be initialized as:
sequential_pattern = line[i:i + window_size]
Please update the code.