7jep7 commited on
Commit
d373b05
·
verified ·
1 Parent(s): a88d9b7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -163
README.md CHANGED
@@ -1,163 +1,73 @@
1
- ---
2
- license: mit
3
- configs:
4
- - config_name: bearings
5
- data_files:
6
- - split: train
7
- path: bearings/train-*
8
- - config_name: gearboxes
9
- data_files:
10
- - split: train
11
- path: gearboxes/train-*
12
- - config_name: source_metadata
13
- data_files:
14
- - split: train
15
- path: source_metadata/train-*
16
- dataset_info:
17
- - config_name: bearings
18
- features:
19
- - name: signal
20
- list:
21
- list: float32
22
- - name: n_channels
23
- dtype: int32
24
- - name: sampling_rate_hz
25
- dtype: int32
26
- - name: dataset_source
27
- dtype: string
28
- - name: sample_id
29
- dtype: string
30
- - name: health_state
31
- dtype: string
32
- - name: channel_names
33
- list: string
34
- - name: fault_type
35
- dtype: string
36
- - name: fault_severity
37
- dtype: string
38
- - name: rpm
39
- dtype: int32
40
- - name: load
41
- dtype: int32
42
- - name: load_unit
43
- dtype: string
44
- - name: component_type
45
- dtype: string
46
- - name: manufacturer
47
- dtype: string
48
- - name: model
49
- dtype: string
50
- - name: original_file
51
- dtype: string
52
- - name: license
53
- dtype: string
54
- - name: split
55
- dtype: string
56
- - name: extra_metadata
57
- dtype: string
58
- splits:
59
- - name: train
60
- num_bytes: 1294579773
61
- num_examples: 3849
62
- download_size: 1293644219
63
- dataset_size: 1294579773
64
- - config_name: gearboxes
65
- features:
66
- - name: source_id
67
- dtype: string
68
- - name: sample_id
69
- dtype: string
70
- - name: original_file
71
- dtype: string
72
- - name: signal
73
- list:
74
- list: float64
75
- - name: n_channels
76
- dtype: int64
77
- - name: channel_names
78
- list: string
79
- - name: channel_modalities
80
- list: string
81
- - name: slow_signals
82
- dtype: 'null'
83
- - name: health_state
84
- dtype: string
85
- - name: fault_type
86
- dtype: string
87
- - name: fault_severity
88
- dtype: 'null'
89
- - name: rpm
90
- dtype: int64
91
- - name: load
92
- dtype: float64
93
- - name: load_unit
94
- dtype: string
95
- - name: episode_id
96
- dtype: 'null'
97
- - name: episode_position
98
- dtype: 'null'
99
- - name: cumulative_runtime_hours
100
- dtype: 'null'
101
- - name: rul_percent
102
- dtype: 'null'
103
- - name: is_transition
104
- dtype: bool
105
- - name: transition_type
106
- dtype: 'null'
107
- - name: split
108
- dtype: string
109
- - name: extra_metadata
110
- dtype: string
111
- splits:
112
- - name: train
113
- num_bytes: 1882166716
114
- num_examples: 1085
115
- download_size: 1882002968
116
- dataset_size: 1882166716
117
- - config_name: source_metadata
118
- features:
119
- - name: source_id
120
- dtype: string
121
- - name: full_name
122
- dtype: string
123
- - name: url
124
- dtype: string
125
- - name: license
126
- dtype: string
127
- - name: citation
128
- dtype: string
129
- - name: sampling_rate_hz
130
- dtype: int64
131
- - name: signal_duration_sec
132
- dtype: float64
133
- - name: available_modalities
134
- list: string
135
- - name: modality_details
136
- dtype: string
137
- - name: component_type
138
- dtype: string
139
- - name: component_subtype
140
- dtype: string
141
- - name: component_context
142
- dtype: string
143
- - name: manufacturer
144
- dtype: string
145
- - name: model
146
- dtype: string
147
- - name: has_episodes
148
- dtype: bool
149
- - name: has_transitions
150
- dtype: bool
151
- - name: has_continuous_severity
152
- dtype: bool
153
- - name: available_fault_types
154
- list: string
155
- - name: n_samples
156
- dtype: int64
157
- splits:
158
- - name: train
159
- num_bytes: 4766
160
- num_examples: 10
161
- download_size: 12913
162
- dataset_size: 4766
163
- ---
 
1
+ ---
2
+ license: mit
3
+ configs:
4
+ - config_name: source_metadata
5
+ data_files:
6
+ - split: train
7
+ path: source_metadata/train-*
8
+ - config_name: bearings
9
+ data_files:
10
+ - split: train
11
+ path: bearings/train-*
12
+ - config_name: gearboxes
13
+ data_files:
14
+ - split: train
15
+ path: gearboxes/train-*
16
+ ---
17
+
18
+ # Mechanical Components Vibration Dataset
19
+
20
+ A comprehensive, multi-source mechanical vibration dataset for training and evaluating machine learning models for fault diagnosis and prognostics.
21
+
22
+ ## Two-Level Schema
23
+
24
+ ### Level 1: source_metadata
25
+ One row per source dataset containing constant properties (sampling rate, component info, etc.)
26
+
27
+ ### Level 2: bearings / gearboxes
28
+ Per-sample data with `source_id` foreign key to source_metadata.
29
+
30
+ ## Dataset Sources
31
+
32
+ | Source | Config | Samples | Episodes | Transitions |
33
+ |--------|--------|---------|----------|-------------|
34
+ | CWRU | bearings | 40 | No | No |
35
+ | MFPT | bearings | 20 | No | No |
36
+ | FEMTO | bearings | ~3500 | Yes | No |
37
+ | Mendeley | bearings | 280 | Yes | Yes |
38
+ | XJTU-SY | bearings | 1370 | Yes | No |
39
+ | OEDI | gearboxes | 20 | No | No |
40
+ | PHM 2009 | gearboxes | 109 | No | No |
41
+ | MCC5-THU | gearboxes | 956 | Yes | Yes |
42
+
43
+ ## Usage
44
+
45
+ ```python
46
+ from datasets import load_dataset
47
+
48
+ # Load bearing samples
49
+ bearings = load_dataset("Forgis/Mechanical-Components", "bearings", split="train")
50
+
51
+ # Load gearbox samples
52
+ gearboxes = load_dataset("Forgis/Mechanical-Components", "gearboxes", split="train")
53
+
54
+ # Load source metadata
55
+ sources = load_dataset("Forgis/Mechanical-Components", "source_metadata", split="train")
56
+ sources_dict = {s["source_id"]: s for s in sources}
57
+
58
+ # Get full info for a sample
59
+ sample = bearings[0]
60
+ source = sources_dict[sample["source_id"]]
61
+ ```
62
+
63
+ ## Citations
64
+
65
+ Please cite the original datasets when using this data:
66
+ - CWRU: Case Western Reserve University Bearing Data Center
67
+ - MFPT: Society for Machinery Failure Prevention Technology
68
+ - FEMTO: Nectoux et al., IEEE PHM 2012
69
+ - Mendeley: Bearing Fault Dataset Under Varying Speed Conditions
70
+ - XJTU-SY: Wang et al., IEEE Trans. Instrumentation and Measurement, 2020
71
+ - OEDI: U.S. Department of Energy Open Energy Data Initiative
72
+ - PHM 2009: PHM Society 2009 Data Challenge
73
+ - MCC5-THU: Liu et al., Tsinghua University / MCC5 Group Shanghai