You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I run benchmark on The Windows dataset, the results are different than your Windows_2k.log_templates.csv
This is mine:
(1)Loaded Servicing Stack v6.1.7601.23505 with Core: C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.23505_none_681aa442f6fed7f0\cbscore.dll"
(2)<> WcpInitialize (wcp.dll version 0.0.0.6) called (stack <>
This is yours:
(1)Loaded Servicing Stack <> with Core: <>\cbscore.dll
(2)<>@<>/<>/<>:<>:<>:<>.<> WcpInitialize (wcp.dll version <>) called (stack @<>)
The regex in Drain_demo.py is
regex = [
r'blk_(|-)[0-9]+' , # block id
r'(/|)([0-9]+.){3}[0-9]+(:[0-9]+|)(:|)', # IP
r'(?<=[^A-Za-z0-9])(-?+?\d+)(?=[^A-Za-z0-9])|[0-9]+$', # Numbers
]
but the regex in Drain_benchmark.py is
'regex': [r'blk_-?\d+', r'(\d+.){3}\d+(:\d+)?']
I wonder why
The text was updated successfully, but these errors were encountered: