jskswamy commited on
Commit
61ae249
·
verified ·
1 Parent(s): 75d43c7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -69
README.md CHANGED
@@ -1,71 +1,50 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: Engine RPM
5
- dtype: int64
6
- - name: Lub Oil Pressure
7
- dtype: float64
8
- - name: Fuel Pressure
9
- dtype: float64
10
- - name: Coolant Pressure
11
- dtype: float64
12
- - name: Lub Oil Temp
13
- dtype: float64
14
- - name: Coolant Temp
15
- dtype: float64
16
- - name: RPM_x_OilPressure
17
- dtype: float64
18
- - name: RPM_x_FuelPressure
19
- dtype: float64
20
- - name: RPM_x_CoolantPressure
21
- dtype: float64
22
- - name: OilTemp_x_OilPressure
23
- dtype: float64
24
- - name: CoolantTemp_x_CoolantPressure
25
- dtype: float64
26
- - name: RPM_squared
27
- dtype: int64
28
- - name: OilPressure_squared
29
- dtype: float64
30
- - name: TempDiff
31
- dtype: float64
32
- - name: OilFuelPressureRatio
33
- dtype: float64
34
- - name: CoolantOilPressureRatio
35
- dtype: float64
36
- - name: OilHealthIndex
37
- dtype: float64
38
- - name: CoolantStress
39
- dtype: float64
40
- - name: OilTempPerRPM
41
- dtype: float64
42
- - name: CoolantTempPerRPM
43
- dtype: float64
44
- - name: PressureSum
45
- dtype: float64
46
- - name: TempSum
47
- dtype: float64
48
- - name: Engine Condition
49
- dtype: int64
50
- splits:
51
- - name: train
52
- num_bytes: 2695600
53
- num_examples: 14650
54
- - name: validation
55
- num_bytes: 359536
56
- num_examples: 1954
57
- - name: test
58
- num_bytes: 539304
59
- num_examples: 2931
60
- download_size: 3900069
61
- dataset_size: 3594440
62
- configs:
63
- - config_name: default
64
- data_files:
65
- - split: train
66
- path: data/train-*
67
- - split: validation
68
- path: data/validation-*
69
- - split: test
70
- path: data/test-*
71
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ tags:
6
+ - predictive-maintenance
7
+ - iot
8
+ - sensors
9
+ - fleet-management
10
+ size_categories:
11
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # Predictive Maintenance Engine Sensor Dataset
15
+
16
+ Engine sensor readings from commercial diesel vehicles for predictive maintenance classification.
17
+
18
+ ## Features
19
+
20
+ | Feature | Description | Unit |
21
+ |---------|-------------|------|
22
+ | Engine RPM | Engine revolutions per minute | RPM |
23
+ | Lub Oil Pressure | Lubrication oil pressure | bar |
24
+ | Fuel Pressure | Fuel delivery pressure | bar |
25
+ | Coolant Pressure | Cooling system pressure | bar |
26
+ | Lub Oil Temp | Lubrication oil temperature | °C |
27
+ | Coolant Temp | Engine coolant temperature | °C |
28
+ | Engine Condition | Target: 0=Normal, 1=Needs Maintenance | binary |
29
+
30
+ ## Dataset Splits
31
+
32
+ | Split | Samples | Purpose |
33
+ |-------|---------|---------|
34
+ | train | 75% | Model training |
35
+ | validation | 10% | Hyperparameter tuning |
36
+ | test | 15% | Final evaluation |
37
+
38
+ All splits are stratified by `Engine Condition` to maintain class balance.
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+ dataset = load_dataset("jskswamy/predictive-maintenance-data")
45
+ train_df = dataset["train"].to_pandas()
46
+ ```
47
+
48
+ ## License
49
+
50
+ MIT License