Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
configs:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- config_name: bearings
|
| 5 |
data_files:
|
| 6 |
- split: train
|
|
@@ -9,86 +13,15 @@ configs:
|
|
| 9 |
data_files:
|
| 10 |
- split: train
|
| 11 |
path: gearboxes/*.parquet
|
| 12 |
-
- config_name: source_metadata
|
| 13 |
-
data_files:
|
| 14 |
-
- split: train
|
| 15 |
-
path: source_metadata/train-*
|
| 16 |
-
dataset_info:
|
| 17 |
-
config_name: source_metadata
|
| 18 |
-
features:
|
| 19 |
-
- name: source_id
|
| 20 |
-
dtype: string
|
| 21 |
-
- name: full_name
|
| 22 |
-
dtype: string
|
| 23 |
-
- name: url
|
| 24 |
-
dtype: string
|
| 25 |
-
- name: license
|
| 26 |
-
dtype: string
|
| 27 |
-
- name: citation
|
| 28 |
-
dtype: string
|
| 29 |
-
- name: sampling_rate_hz
|
| 30 |
-
dtype: int64
|
| 31 |
-
- name: signal_duration_sec
|
| 32 |
-
dtype: float64
|
| 33 |
-
- name: available_modalities
|
| 34 |
-
list: string
|
| 35 |
-
- name: modality_details
|
| 36 |
-
dtype: string
|
| 37 |
-
- name: component_type
|
| 38 |
-
dtype: string
|
| 39 |
-
- name: component_subtype
|
| 40 |
-
dtype: string
|
| 41 |
-
- name: component_context
|
| 42 |
-
dtype: string
|
| 43 |
-
- name: manufacturer
|
| 44 |
-
dtype: string
|
| 45 |
-
- name: model
|
| 46 |
-
dtype: string
|
| 47 |
-
- name: has_episodes
|
| 48 |
-
dtype: bool
|
| 49 |
-
- name: has_transitions
|
| 50 |
-
dtype: bool
|
| 51 |
-
- name: has_continuous_severity
|
| 52 |
-
dtype: bool
|
| 53 |
-
- name: available_fault_types
|
| 54 |
-
list: string
|
| 55 |
-
- name: n_samples
|
| 56 |
-
dtype: int64
|
| 57 |
-
splits:
|
| 58 |
-
- name: train
|
| 59 |
-
num_bytes: 8418
|
| 60 |
-
num_examples: 16
|
| 61 |
-
download_size: 15176
|
| 62 |
-
dataset_size: 8418
|
| 63 |
---
|
| 64 |
|
| 65 |
# Mechanical Components Vibration Dataset
|
| 66 |
|
| 67 |
-
Comprehensive multi-source mechanical vibration dataset for fault diagnosis and prognostics.
|
| 68 |
-
|
| 69 |
-
## Two-Level Schema
|
| 70 |
-
- **source_metadata**: One row per source dataset (10 sources)
|
| 71 |
-
- **bearings**: Per-sample vibration data from 7 bearing sources
|
| 72 |
-
- **gearboxes**: Per-sample vibration data from 3 gearbox sources
|
| 73 |
-
|
| 74 |
-
## Sources
|
| 75 |
-
|
| 76 |
-
| Source | Config | Samples | Episodes | Transitions |
|
| 77 |
-
|--------|--------|---------|----------|-------------|
|
| 78 |
-
| CWRU | bearings | 40 | No | No |
|
| 79 |
-
| MFPT | bearings | 20 | No | No |
|
| 80 |
-
| FEMTO | bearings | 3,569 | Yes (RUL) | No |
|
| 81 |
-
| Mendeley | bearings | 280 | Yes | Yes (279) |
|
| 82 |
-
| XJTU-SY | bearings | 1,370 | Yes (RUL) | No |
|
| 83 |
-
| IMS | bearings | 1,256 | Yes (RUL) | No |
|
| 84 |
-
| Paderborn | bearings | 384 | No | No |
|
| 85 |
-
| OEDI | gearboxes | 20 | No | No |
|
| 86 |
-
| PHM 2009 | gearboxes | 109 | No | No |
|
| 87 |
-
| MCC5-THU | gearboxes | 956 | Yes | Yes (133) |
|
| 88 |
|
| 89 |
-
**Total: ~
|
| 90 |
|
| 91 |
-
##
|
| 92 |
|
| 93 |
```python
|
| 94 |
from datasets import load_dataset
|
|
@@ -97,3 +30,103 @@ bearings = load_dataset("Forgis/Mechanical-Components", "bearings", split="train
|
|
| 97 |
gearboxes = load_dataset("Forgis/Mechanical-Components", "gearboxes", split="train")
|
| 98 |
sources = load_dataset("Forgis/Mechanical-Components", "source_metadata", split="train")
|
| 99 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
configs:
|
| 4 |
+
- config_name: source_metadata
|
| 5 |
+
data_files:
|
| 6 |
+
- split: train
|
| 7 |
+
path: source_metadata/*.parquet
|
| 8 |
- config_name: bearings
|
| 9 |
data_files:
|
| 10 |
- split: train
|
|
|
|
| 13 |
data_files:
|
| 14 |
- split: train
|
| 15 |
path: gearboxes/*.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# Mechanical Components Vibration Dataset
|
| 19 |
|
| 20 |
+
Comprehensive multi-source mechanical vibration dataset for training cross-component fault diagnosis and prognostics models. Designed for the Mechanical-JEPA project.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
+
**Total: ~12,000+ samples | 9.5 GB | 16 sources | 5 component types**
|
| 23 |
|
| 24 |
+
## Quick Start
|
| 25 |
|
| 26 |
```python
|
| 27 |
from datasets import load_dataset
|
|
|
|
| 30 |
gearboxes = load_dataset("Forgis/Mechanical-Components", "gearboxes", split="train")
|
| 31 |
sources = load_dataset("Forgis/Mechanical-Components", "source_metadata", split="train")
|
| 32 |
```
|
| 33 |
+
|
| 34 |
+
## Two-Level Schema
|
| 35 |
+
|
| 36 |
+
**source_metadata** (16 entries): One row per source dataset with constant properties.
|
| 37 |
+
**bearings/gearboxes** configs: Per-sample data linked via `source_id` foreign key.
|
| 38 |
+
|
| 39 |
+
## Dataset Sources
|
| 40 |
+
|
| 41 |
+
### Bearings (~10,000 samples from 10 sources)
|
| 42 |
+
|
| 43 |
+
| Source | Samples | Component | Sensors | Unique Value |
|
| 44 |
+
|--------|---------|-----------|---------|--------------|
|
| 45 |
+
| [CWRU](https://engineering.case.edu/bearingdatacenter) | 40 | Ball bearing | Vibration | Standard benchmark |
|
| 46 |
+
| [MFPT](https://www.mfpt.org/fault-data-sets/) | 20 | Ball bearing | Vibration | Variable load |
|
| 47 |
+
| [FEMTO](https://www.nasa.gov/content/prognostics-center-of-excellence-data-set-repository) | 3,569 | Ball bearing | Vibration, temperature | Run-to-failure (RUL) |
|
| 48 |
+
| [Mendeley](https://data.mendeley.com/datasets/vxkj334rzv/7) | 280 | Ball bearing | Vibration | **Speed transitions** (action-conditioning) |
|
| 49 |
+
| [XJTU-SY](https://github.com/WangBiaoXJTU/xjtu-sy-bearing-datasets) | 1,370 | Ball bearing | Vibration | Run-to-failure (RUL) |
|
| 50 |
+
| [IMS/NASA](https://data.nasa.gov/dataset/ims-bearings) | 1,256 | Ball bearing | Vibration | Run-to-failure (RUL) |
|
| 51 |
+
| [Paderborn](https://mb.uni-paderborn.de/kat/forschung/bearing-datacenter/) | 384 | Ball bearing | Vibration, **current** | Real + artificial faults |
|
| 52 |
+
| [MAFAULDA](https://www02.smt.ufrj.br/~offshore/mfs/page_01.html) | 800 | **Shaft+bearing** | Vibration, **acoustic**, tachometer | **Imbalance, misalignment** (shaft faults!) |
|
| 53 |
+
| [Ottawa](https://data.mendeley.com/datasets/y2px5tg92h/1) | 180 | Ball bearing | Vibration, **acoustic** | **Cage faults**, 3 health stages |
|
| 54 |
+
| [SCA Pulp Mill](https://data.mendeley.com/datasets/tdn96mkkpt/2) | 2,663 | Industrial bearing | Vibration | **Real industrial data** |
|
| 55 |
+
| [VBL-VA001](https://zenodo.org/records/7006575) | 800 | Shaft+bearing | Vibration (triaxial) | Misalignment, unbalance |
|
| 56 |
+
| [SEU](https://github.com/cathysiyu/Mechanical-datasets) | 140 | Drivetrain bearing | 8-ch (motor+gearbox) | Cross-component rig |
|
| 57 |
+
|
| 58 |
+
### Gearboxes (~1,225 samples from 4 sources)
|
| 59 |
+
|
| 60 |
+
| Source | Samples | Component | Sensors | Unique Value |
|
| 61 |
+
|--------|---------|-----------|---------|--------------|
|
| 62 |
+
| [OEDI](https://data.openei.org/submissions/623) | 20 | Spur gear | Vibration (4-ch) | Healthy vs gear crack |
|
| 63 |
+
| [PHM 2009](https://phmsociety.org/public-data-sets/) | 109 | Spur gear | Vibration, tachometer | Challenge data |
|
| 64 |
+
| [MCC5-THU](https://github.com/liuzy0708/MCC5-THU-Gearbox-Benchmark-Datasets) | 956 | Spur gear | Vibration | **Speed/load transitions** |
|
| 65 |
+
| [SEU](https://github.com/cathysiyu/Mechanical-datasets) | 140 | Planetary+parallel | 8-ch (motor+gearbox) | Cross-component rig |
|
| 66 |
+
|
| 67 |
+
## Component Types Covered
|
| 68 |
+
|
| 69 |
+
| Component | Sources | Fault Types |
|
| 70 |
+
|-----------|---------|-------------|
|
| 71 |
+
| **Bearings** | CWRU, MFPT, FEMTO, Mendeley, XJTU-SY, IMS, Paderborn, Ottawa, SCA | inner_race, outer_race, ball, cage, compound, degrading |
|
| 72 |
+
| **Gears** | OEDI, PHM2009, MCC5-THU, SEU | gear_crack, gear_wear, missing_tooth, tooth_break |
|
| 73 |
+
| **Shafts** | MAFAULDA, VBL-VA001 | imbalance, misalignment_horizontal, misalignment_vertical |
|
| 74 |
+
| **Drivetrains** | SEU | Combined motor+gearbox+bearing from single rig |
|
| 75 |
+
| **Industrial** | SCA Pulp Mill | Naturally occurring faults in real machinery |
|
| 76 |
+
|
| 77 |
+
## Sensor Modalities
|
| 78 |
+
|
| 79 |
+
| Modality | Sources | Channels |
|
| 80 |
+
|----------|---------|----------|
|
| 81 |
+
| **Vibration** (accelerometer) | All 16 | 1-8 channels per sample |
|
| 82 |
+
| **Motor current** | Paderborn, Mendeley (partial) | 2-3 phase current |
|
| 83 |
+
| **Acoustic** (microphone) | MAFAULDA, Ottawa | 1 channel |
|
| 84 |
+
| **Tachometer** | MAFAULDA, PHM2009, OEDI | 1 channel |
|
| 85 |
+
| **Temperature** | FEMTO | Scalar in slow_signals |
|
| 86 |
+
| **Torque** | SEU, MCC5-THU | 1 channel |
|
| 87 |
+
|
| 88 |
+
## Key Features
|
| 89 |
+
|
| 90 |
+
- **412 transition samples** for action-conditioning (Mendeley speed ramps + MCC5-THU speed/load transitions)
|
| 91 |
+
- **Episode/RUL fields** for prognostics (FEMTO, XJTU-SY, IMS, SCA)
|
| 92 |
+
- **Real industrial data** from SCA pulp mill (not lab)
|
| 93 |
+
- **Shaft faults** (imbalance, misalignment) from MAFAULDA and VBL-VA001
|
| 94 |
+
- **Acoustic data** from MAFAULDA and Ottawa (microphone alongside accelerometer)
|
| 95 |
+
- **Cross-component** drivetrain data from SEU (motor+gearbox+bearing on single rig)
|
| 96 |
+
|
| 97 |
+
## Per-Sample Schema
|
| 98 |
+
|
| 99 |
+
```python
|
| 100 |
+
{
|
| 101 |
+
"source_id": "cwru", # FK to source_metadata
|
| 102 |
+
"sample_id": "cwru_105",
|
| 103 |
+
"signal": [[0.1, 0.2, ...]], # (n_channels, signal_length)
|
| 104 |
+
"n_channels": 2,
|
| 105 |
+
"channel_names": ["DE_accel", "FE_accel"],
|
| 106 |
+
"channel_modalities": ["vibration", "vibration"],
|
| 107 |
+
"health_state": "faulty", # healthy | faulty | degrading
|
| 108 |
+
"fault_type": "inner_race",
|
| 109 |
+
"fault_severity": None,
|
| 110 |
+
"rpm": 1750,
|
| 111 |
+
"load": 2.0,
|
| 112 |
+
"load_unit": "hp",
|
| 113 |
+
"episode_id": None, # For run-to-failure
|
| 114 |
+
"episode_position": None, # 0.0 to 1.0
|
| 115 |
+
"rul_percent": None, # Remaining useful life
|
| 116 |
+
"is_transition": False, # Speed/load change
|
| 117 |
+
"transition_type": None, # ramp_speed | ramp_load
|
| 118 |
+
}
|
| 119 |
+
```
|
| 120 |
+
|
| 121 |
+
## v2 Training-Ready Config (Planned)
|
| 122 |
+
|
| 123 |
+
A standardized config for direct model training:
|
| 124 |
+
- Fixed sampling rate: 12,800 Hz
|
| 125 |
+
- Fixed window: 16,384 samples (1.28 seconds)
|
| 126 |
+
- Vibration-only (single modality)
|
| 127 |
+
- Per-sample instance normalization
|
| 128 |
+
- Source-disjoint train/val/test splits
|
| 129 |
+
|
| 130 |
+
## Citations
|
| 131 |
+
|
| 132 |
+
Please cite the original datasets. See source_metadata config for full citations per source.
|