anonymizeddb commited on
Commit
3b0a325
·
verified ·
1 Parent(s): b745964

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: CAD-CICIDS2018
3
+ license: cc-by-4.0
4
+ language:
5
+ - en
6
+ task_categories:
7
+ - tabular-classification
8
+ task_ids:
9
+ - tabular-multi-class-classification
10
+ size_categories:
11
+ - 1M<n<10M
12
+ tags:
13
+ - anomaly-detection
14
+ - continual-learning
15
+ - continual-anomaly-detection
16
+ - network-intrusion-detection
17
+ - cybersecurity
18
+ - tabular
19
+ - cic-ids2018
20
+ ---
21
+
22
+ # CAD-CICIDS2018
23
+
24
+ ## Dataset Summary
25
+
26
+ **CAD-CICIDS2018** is a single-source continual anomaly detection benchmark scenario for network intrusion detection. It is derived from **CSE-CIC-IDS2018** and converts the original tabular network-intrusion data into a sequence of concept-grouped tasks.
27
+
28
+ The dataset contains **2,590,771 samples**, **5 tasks**, and has a reported **28.04% anomaly ratio in the test set**.
29
+
30
+ The dataset is anonymized for double-blind NeurIPS review. Author names, institutional affiliations, project acknowledgements, and non-anonymous paper references are intentionally omitted.
31
+
32
+ ## Intended Use
33
+
34
+ This dataset is intended for research on:
35
+
36
+ - continual anomaly detection;
37
+ - continual learning for tabular data;
38
+ - network intrusion detection;
39
+ - robustness under distribution shift;
40
+ - task ordering in continual-learning benchmarks;
41
+ - forgetting and knowledge transfer across related network-traffic concepts;
42
+ - benchmarking anomaly detectors under sequential task exposure.
43
+
44
+ The intended use is **defensive machine learning research**. The dataset should not be used to support offensive cybersecurity activity.
45
+
46
+ ## Dataset Source
47
+
48
+ - CSE-CIC-IDS2018: `https://www.unb.ca/cic/datasets/ids-2018.html`
49
+
50
+
51
+ ## Dataset Files
52
+
53
+ The repository contains the following files:
54
+
55
+ | File | Description |
56
+ |---|---|
57
+ | `data.csv` | Main tabular dataset file. |
58
+ | `orderings.json` | Predefined task orderings for continual-learning evaluation. |
59
+ | `croissant.json` | Croissant metadata describing the dataset. |
60
+
61
+ ## Dataset Structure
62
+
63
+ The main file is:
64
+
65
+ ```text
66
+ data.csv
67
+ ```
68
+
69
+ The dataset contains task metadata, binary labels, and numerical flow-level features.
70
+
71
+ ### Core Columns
72
+
73
+ | Column | Type | Description |
74
+ |---|---:|---|
75
+ | `task_id` | integer | Numeric identifier of the continual-learning task. |
76
+ | `task_name` | string | Name of the task, e.g. `cicids2018_0`. |
77
+ | `task_split` | string | Split assignment for the row. |
78
+ | `label` | integer | Binary anomaly label. Conventionally, `0` denotes benign/normal traffic and `1` denotes anomalous/attack traffic. |
79
+
80
+ ### Task Identifiers
81
+
82
+ The dataset contains the following task identifiers:
83
+
84
+ `cicids2018_0`, `cicids2018_1`, `cicids2018_2`, `cicids2018_3`, `cicids2018_4`
85
+
86
+ ### Feature Columns
87
+
88
+ The remaining columns are numerical network-flow features, including packet-count, byte-count, flag-count, duration, inter-arrival-time, and aggregate flow-statistics features. Representative examples include:
89
+
90
+ - `Dst Port`
91
+ - `Protocol`
92
+ - `Flow Duration`
93
+ - `Tot Fwd Pkts`
94
+ - `Tot Bwd Pkts`
95
+ - `TotLen Fwd Pkts`
96
+ - `TotLen Bwd Pkts`
97
+ - `Fwd Pkt Len Mean`
98
+ - `Bwd Pkt Len Mean`
99
+ - `Flow Byts/s`
100
+ - `Flow Pkts/s`
101
+ - `Flow IAT Mean`
102
+ - `Fwd IAT Mean`
103
+ - `Bwd IAT Mean`
104
+
105
+ For the complete schema, see `croissant.json`.
106
+
107
+ ## Task Orderings
108
+
109
+ The dataset provides six predefined orderings in `orderings.json`. These orderings define different continual-learning evaluation regimes over the same task set.
110
+
111
+ | Ordering | Task sequence |
112
+ |---|---|
113
+ | `curriculum_asc` | `cicids2018_3` → `cicids2018_4` → `cicids2018_2` → `cicids2018_1` → `cicids2018_0` |
114
+ | `curriculum_desc` | `cicids2018_0` → `cicids2018_1` → `cicids2018_2` → `cicids2018_4` → `cicids2018_3` |
115
+ | `generalization_desc` | `cicids2018_2` → `cicids2018_3` → `cicids2018_0` → `cicids2018_1` → `cicids2018_4` |
116
+ | `generalization_asc` | `cicids2018_4` → `cicids2018_1` → `cicids2018_0` → `cicids2018_3` → `cicids2018_2` |
117
+ | `smooth_drift` | `cicids2018_2` → `cicids2018_0` → `cicids2018_1` → `cicids2018_3` → `cicids2018_4` |
118
+ | `abrupt_drift` | `cicids2018_1` → `cicids2018_2` → `cicids2018_3` → `cicids2018_0` → `cicids2018_4` |
119
+
120
+ These orderings are intended to expose complementary continual-learning dynamics, including curriculum-like adaptation, generalization-oriented ordering, smooth drift, and abrupt drift.