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
could u explain what the variable "malicious_entity" in "trace_parser.py" represent? (as following,if I take trace as dataset parameter, what should trace.txt be?)
def read_graphs(dataset):
malicious_entities = '../data/{}/{}.txt'.format(dataset, dataset)
f = open(malicious_entities, 'r')
malicious_entities = set()
for l in f.readlines():
malicious_entities.add(l.lstrip().rstrip())
...
The text was updated successfully, but these errors were encountered:
could u explain what the variable "malicious_entity" in "trace_parser.py" represent? (as following,if I take trace as dataset parameter, what should trace.txt be?)
def read_graphs(dataset):
malicious_entities = '../data/{}/{}.txt'.format(dataset, dataset)
f = open(malicious_entities, 'r')
malicious_entities = set()
for l in f.readlines():
malicious_entities.add(l.lstrip().rstrip())
...
The text was updated successfully, but these errors were encountered: