19kmunz commited on
Commit
cab3f59
1 Parent(s): d96ce24

README.md: Optional rows

Browse files
Files changed (1) hide show
  1. README.md +12 -12
README.md CHANGED
@@ -80,50 +80,50 @@ Data type: string - enum(unknown_transport, tcp, udp, icmp). Only TCP and UDP in
80
 
81
  Name: service
82
  Description: An identification of an application protocol being sent over the connection.
83
- Data type: string
84
 
85
  Name: duration
86
  Description: How long the connection lasted.
87
- Data type: float64 - time interval
88
 
89
  Name: orig_bytes
90
  Description: The number of payload bytes the originator sent.
91
- Data type: int64 - uint64 in original
92
 
93
  Name: resp_bytes
94
  Description:The number of payload bytes the responder sent.
95
- Data type: int64 - uint64 in original
96
 
97
  Name: conn_state
98
  Description: Value indicating connection state. (S0, S1, SF, REJ, S2, S3, RSTO, RSTR, RSTOS0, RSTRH, SH, SHR, OTH)
99
- Data type: string
100
 
101
  Name: missed_bytes
102
  Description: Indicates the number of bytes missed in content gaps, which is representative of packet loss.
103
- Data type: int64 - uint64 in original
104
 
105
  Name: history
106
  Description: Records the state history of connections as a string of letters.
107
- Data type: string
108
 
109
  Name: orig_pkts
110
  Description: Number of packets that the originator sent.
111
- Data type: int64 - uint64 in original
112
 
113
  Name: orig_ip_bytes
114
  Description: Number of IP level bytes that the originator sent.
115
- Data type: int64 - uint64 in original
116
 
117
  Name: resp_pkts
118
  Description: Number of packets that the responder sent.
119
- Data type: int64 - uint64 in original
120
 
121
  Name: resp_ip_bytes
122
  Description: Number of IP level bytes that the responder sent.
123
- Data type: int64 - uint64 in original
124
 
125
  Name: label
126
- Description: Specifies if data point is malicious or benign
127
  Data type: string - enum(Malicious, Benign)
128
 
129
  NOTE: ts, uid, id.orig_h, id.resp_h have been removed as they are dataset specific. Models should not be trained with specific timestamps or IP addresses (id.orig_h) using this dataset, as that can lead to over fitting to dataset specific times and addresses.
 
80
 
81
  Name: service
82
  Description: An identification of an application protocol being sent over the connection.
83
+ Data type: optional string
84
 
85
  Name: duration
86
  Description: How long the connection lasted.
87
+ Data type: optional float64 - time interval
88
 
89
  Name: orig_bytes
90
  Description: The number of payload bytes the originator sent.
91
+ Data type: optional int64 - uint64 in original
92
 
93
  Name: resp_bytes
94
  Description:The number of payload bytes the responder sent.
95
+ Data type: optional int64 - uint64 in original
96
 
97
  Name: conn_state
98
  Description: Value indicating connection state. (S0, S1, SF, REJ, S2, S3, RSTO, RSTR, RSTOS0, RSTRH, SH, SHR, OTH)
99
+ Data type: optional string
100
 
101
  Name: missed_bytes
102
  Description: Indicates the number of bytes missed in content gaps, which is representative of packet loss.
103
+ Data type: optional int64 - uint64 in original. default = 0
104
 
105
  Name: history
106
  Description: Records the state history of connections as a string of letters.
107
+ Data type: optional string
108
 
109
  Name: orig_pkts
110
  Description: Number of packets that the originator sent.
111
+ Data type: optional int64 - uint64 in original
112
 
113
  Name: orig_ip_bytes
114
  Description: Number of IP level bytes that the originator sent.
115
+ Data type: optional int64 - uint64 in original
116
 
117
  Name: resp_pkts
118
  Description: Number of packets that the responder sent.
119
+ Data type: optional int64 - uint64 in original
120
 
121
  Name: resp_ip_bytes
122
  Description: Number of IP level bytes that the responder sent.
123
+ Data type: optional int64 - uint64 in original
124
 
125
  Name: label
126
+ Description: Specifies if data point is benign or some form of malicious. See the dataset creators paper for descriptions of attack types
127
  Data type: string - enum(Malicious, Benign)
128
 
129
  NOTE: ts, uid, id.orig_h, id.resp_h have been removed as they are dataset specific. Models should not be trained with specific timestamps or IP addresses (id.orig_h) using this dataset, as that can lead to over fitting to dataset specific times and addresses.