-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_example.json
More file actions
33 lines (33 loc) · 1.05 KB
/
config_example.json
File metadata and controls
33 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"path":{
"dataset": "iscx",
"pcap_folder": "data-pcap",
"json_folder": "data-json",
"bins_folder": "bins",
"model_folder": "model",
"result_folder": "result"
},
"model_paras":{
"max_seq_len": 16,
"batch_size": 64,
"epoch": 50,
"checkpoint": 10,
"expand_times": 0
},
"attributes":{
"sery_attribute": {
"time": {"min_unit":0.01,"min_value":0,"max_value":10000},
"pkt_len": {"min_unit":1,"min_value":-1500,"max_value":1500},
"flags":{"min_unit":1,"min_value":0,"max_value":255},
"ttl":{"min_unit":1,"min_value":0,"max_value":255}
},
"port_attribute": {
"src_port": {"min_unit":1,"min_value":0,"max_value":65535},
"dst_port": {"min_unit":1,"min_value":0,"max_value":65535}
},
"ip_attribute": {
"src_ip": {"min_unit":1,"min_value":0,"max_value":4294967295},
"dst_ip": {"min_unit":1,"min_value":0,"max_value":4294967295}
}
}
}