lalababa commited on
Commit
6573a48
·
verified ·
1 Parent(s): ce318d9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -26
README.md CHANGED
@@ -174,29 +174,55 @@ configs:
174
  - UWaveGestureLibrary/UWaveGestureLibrary_TEST.ts
175
 
176
  # ---------- Anomaly Detection ----------
177
- - config_name: SMD
178
- description: "Server Machine Dataset (SMD) for anomaly detection."
179
  data_files:
180
- - SMD/SMD_train.npy
181
- - SMD/SMD_test.npy
182
- - SMD/SMD_test_label.npy
183
- - SMD/SMD_train.pkl
184
- - SMD/SMD_test.pkl
185
- - SMD/SMD_test_label.pkl
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
 
187
- - config_name: MSL
188
- description: "NASA Mars Science Laboratory (MSL) anomaly detection."
189
  data_files:
190
- - MSL/MSL_train.npy
191
- - MSL/MSL_test.npy
192
- - MSL/MSL_test_label.npy
 
193
 
194
- - config_name: SMAP
195
- description: "NASA Soil Moisture Active Passive (SMAP) anomaly detection."
196
  data_files:
197
- - SMAP/SMAP_train.npy
198
- - SMAP/SMAP_test.npy
199
- - SMAP/SMAP_test_label.npy
200
 
201
 
202
  - config_name: PSM-data
@@ -214,15 +240,25 @@ configs:
214
  path: PSM/test_label.csv
215
 
216
 
217
- - config_name: SWaT
218
- description: "Secure Water Treatment (SWaT) anomaly detection; CSV are preprocessed, Excel are raw."
 
 
 
 
 
 
 
 
 
 
 
 
219
  data_files:
220
- - SWaT/swat_train.csv
221
- - SWaT/swat_train2.csv
222
- - SWaT/swat2.csv
223
- - SWaT/swat_raw.csv
224
- - SWaT/SWaT_Dataset_Normal_v1.xlsx
225
- - SWaT/SWaT_Dataset_Attack_v0.xlsx
226
  ---
227
 
228
 
 
174
  - UWaveGestureLibrary/UWaveGestureLibrary_TEST.ts
175
 
176
  # ---------- Anomaly Detection ----------
177
+ - config_name: SMD-data
178
+ description: "Server Machine Dataset (SMD) for anomaly detection — train/test arrays."
179
  data_files:
180
+ - split: train
181
+ path: SMD/SMD_train.npy
182
+ - split: test
183
+ path: SMD/SMD_test.npy
184
+ - split: train_pkl
185
+ path: SMD/SMD_train.pkl
186
+ - split: test_pkl
187
+ path: SMD/SMD_test.pkl
188
+
189
+ - config_name: SMD-label
190
+ description: "SMD anomaly detection — test labels."
191
+ data_files:
192
+ - split: test_label
193
+ path: SMD/SMD_test_label.npy
194
+ - split: test_label_pkl
195
+ path: SMD/SMD_test_label.pkl
196
+
197
+
198
+ - config_name: MSL-data
199
+ description: "NASA Mars Science Laboratory (MSL) anomaly detection — train/test arrays."
200
+ data_files:
201
+ - split: train
202
+ path: MSL/MSL_train.npy
203
+ - split: test
204
+ path: MSL/MSL_test.npy
205
+
206
+ - config_name: MSL-label
207
+ description: "MSL anomaly detection — test labels."
208
+ data_files:
209
+ - split: test_label
210
+ path: MSL/MSL_test_label.npy
211
+
212
 
213
+ - config_name: SMAP-data
214
+ description: "NASA Soil Moisture Active Passive (SMAP) anomaly detection — train/test arrays."
215
  data_files:
216
+ - split: train
217
+ path: SMAP/SMAP_train.npy
218
+ - split: test
219
+ path: SMAP/SMAP_test.npy
220
 
221
+ - config_name: SMAP-label
222
+ description: "SMAP anomaly detection test labels."
223
  data_files:
224
+ - split: test_label
225
+ path: SMAP/SMAP_test_label.npy
 
226
 
227
 
228
  - config_name: PSM-data
 
240
  path: PSM/test_label.csv
241
 
242
 
243
+ - config_name: SWaT-data
244
+ description: "Secure Water Treatment (SWaT) anomaly detection preprocessed CSV data."
245
+ data_files:
246
+ - split: train
247
+ path: SWaT/swat_train.csv
248
+ - split: train2
249
+ path: SWaT/swat_train2.csv
250
+ - split: test
251
+ path: SWaT/swat2.csv
252
+ - split: raw
253
+ path: SWaT/swat_raw.csv
254
+
255
+ - config_name: SWaT-raw
256
+ description: "SWaT raw data (original Excel sheets)."
257
  data_files:
258
+ - split: normal
259
+ path: SWaT/SWaT_Dataset_Normal_v1.xlsx
260
+ - split: attack
261
+ path: SWaT/SWaT_Dataset_Attack_v0.xlsx
 
 
262
  ---
263
 
264