File size: 1,235 Bytes
8e03a7b
61ae249
 
 
 
 
 
 
 
 
 
8e03a7b
61ae249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
license: mit
task_categories:
  - tabular-classification
tags:
  - predictive-maintenance
  - iot
  - sensors
  - fleet-management
size_categories:
  - 1K<n<10K
---

# Predictive Maintenance Engine Sensor Dataset

Engine sensor readings from commercial diesel vehicles for predictive maintenance classification.

## Features

| Feature | Description | Unit |
|---------|-------------|------|
| Engine RPM | Engine revolutions per minute | RPM |
| Lub Oil Pressure | Lubrication oil pressure | bar |
| Fuel Pressure | Fuel delivery pressure | bar |
| Coolant Pressure | Cooling system pressure | bar |
| Lub Oil Temp | Lubrication oil temperature | °C |
| Coolant Temp | Engine coolant temperature | °C |
| Engine Condition | Target: 0=Normal, 1=Needs Maintenance | binary |

## Dataset Splits

| Split | Samples | Purpose |
|-------|---------|---------|
| train | 75% | Model training |
| validation | 10% | Hyperparameter tuning |
| test | 15% | Final evaluation |

All splits are stratified by `Engine Condition` to maintain class balance.

## Usage

```python
from datasets import load_dataset
dataset = load_dataset("jskswamy/predictive-maintenance-data")
train_df = dataset["train"].to_pandas()
```

## License

MIT License