Petsteb commited on
Commit
c5f35cb
·
verified ·
1 Parent(s): dd99a72

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -3
README.md CHANGED
@@ -1,3 +1,87 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ size_categories:
6
+ - 10K<n<100K
7
+ task_categories:
8
+ - tabular-classification
9
+ tags:
10
+ - anomaly-detection
11
+ - industrial
12
+ - sensor-data
13
+ - synthetic
14
+ - time-series
15
+ - multivariate
16
+ pretty_name: Industrial Equipment Sensor Anomaly Data
17
+ ---
18
+
19
+ # Industrial Equipment Sensor Anomaly Data
20
+
21
+ ## Overview
22
+
23
+ Synthetic multivariate sensor data from a simulated manufacturing plant with 5 equipment units (EQ-001 through EQ-005). Each unit generates 10,000 one-minute-interval readings across 11 sensor channels, 2 metadata fields, 3 derived features, and equipment operating mode labels.
24
+
25
+ The dataset is designed for **anomaly detection** benchmarking. It embeds 4 distinct anomaly types at approximately 4.5% prevalence:
26
+
27
+ - **Thermal runaway** — gradual temperature escalation over 15–40 minutes with correlated coolant lag and viscosity drop
28
+ - **Bearing degradation** — vibration spikes with high-frequency noise and proportional acoustic increase
29
+ - **Pressure leak** — slow pressure decay over 20–60 minutes with compensatory flow rate increase
30
+ - **Sensor malfunction** — erratic single-sensor readings that do NOT reflect actual equipment failure (only one sensor affected while correlated sensors remain normal)
31
+
32
+ ## Dataset Details
33
+
34
+ - **Rows:** 50,000 (10,000 per equipment unit)
35
+ - **Columns:** 22
36
+ - **Anomaly rate:** ~4.5%
37
+ - **Time span:** 1-minute intervals starting 2024-01-01
38
+ - **Generation:** Fully synthetic, reproducible with `numpy.random.default_rng(seed=42)`
39
+
40
+ ## Built-in Complexity
41
+
42
+ The data contains deliberate challenges for ML pipelines:
43
+
44
+ - **Target leakage features (3):** `rolling_anomaly_rate`, `maintenance_priority_score`, and `alert_code` contain information derived from the target label that would not exist at prediction time
45
+ - **Missing values:** ~1–3% per sensor in two patterns — random sporadic dropouts and correlated block outages (5–15 minute windows)
46
+ - **Concept drift:** Baseline sensor values shift partway through the timeline for each equipment unit
47
+ - **Operating mode effects:** Sensor baselines differ significantly across modes (startup, normal, high_load, cooldown, idle)
48
+ - **Cross-sensor correlations:** Temperature affects oil viscosity, vibration drives acoustic levels, RPM and flow determine power consumption
49
+
50
+ ## File Structure
51
+
52
+ - `data.csv` — Full raw dataset (50,000 rows × 22 columns)
53
+
54
+ ## Features
55
+
56
+ | Column | Type | Description |
57
+ |--------|------|-------------|
58
+ | reading_id | string | Unique row identifier (R000000–R049999) |
59
+ | timestamp | datetime | Reading timestamp at 1-minute intervals starting 2024-01-01 |
60
+ | equipment_id | string | Equipment unit identifier (EQ-001 through EQ-005) |
61
+ | operating_mode | string | Current mode: startup, normal, high_load, cooldown, idle |
62
+ | temperature_c | float | Main bearing temperature in Celsius |
63
+ | vibration_mm_s | float | Vibration velocity in mm/s |
64
+ | pressure_kpa | float | System pressure in kilopascals |
65
+ | motor_rpm | float | Motor rotational speed |
66
+ | flow_rate_lpm | float | Coolant/fluid flow rate in liters per minute |
67
+ | power_consumption_kw | float | Electrical power draw in kilowatts |
68
+ | coolant_temp_c | float | Coolant outlet temperature in Celsius (lags main temp) |
69
+ | acoustic_level_db | float | Acoustic emission level in decibels |
70
+ | oil_viscosity_cst | float | Lubricant viscosity in centistokes |
71
+ | humidity_pct | float | Ambient humidity percentage |
72
+ | ambient_temp_c | float | Ambient environmental temperature in Celsius |
73
+ | equipment_age_hours | float | Cumulative operating hours of the equipment |
74
+ | hours_since_maintenance | float | Hours elapsed since last maintenance event |
75
+ | is_anomaly | int | Target label: 1 = anomalous, 0 = normal |
76
+ | anomaly_type | string | Anomaly category: normal, thermal_runaway, bearing_degradation, pressure_leak, sensor_malfunction |
77
+ | rolling_anomaly_rate | float | ⚠️ LEAKAGE — Rolling mean of is_anomaly with centered window |
78
+ | maintenance_priority_score | float | ⚠️ LEAKAGE — Score assigned post-hoc based on anomaly status |
79
+ | alert_code | string | ⚠️ LEAKAGE — Alert category derived from anomaly_type with noise |
80
+
81
+ ## Generation Script
82
+
83
+ The dataset was generated with the included `generate_data.py` script using fixed random seeds for full reproducibility. Running the script produces an identical `data.csv`.
84
+
85
+ ## License
86
+
87
+ MIT — free for any use.