Datasets:
The dataset viewer is not available for this dataset.
Error code: ConfigNamesError
Exception: ValueError
Message:
Expected data_files in YAML to be either a string or a list of strings
or a list of dicts with two keys: 'split' and 'path', but got [{'split': 'n/a', 'path': '*.npy'}]
Examples of data_files in YAML:
data_files: data.csv
data_files: data/*.png
data_files:
- part0/*
- part1/*
data_files:
- split: train
path: train/*
- split: test
path: test/*
data_files:
- split: train
path:
- train/part1/*
- train/part2/*
- split: test
path: test/*
PS: some symbols like dashes '-' are not allowed in split names
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 66, in compute_config_names_response
config_names = get_dataset_config_names(
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
dataset_module = dataset_module_factory(
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1207, in dataset_module_factory
raise e1 from None
File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1182, in dataset_module_factory
).get_module()
^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 611, in get_module
metadata_configs = MetadataConfigs.from_dataset_card_data(dataset_card_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/utils/metadata.py", line 153, in from_dataset_card_data
cls._raise_if_data_files_field_not_valid(metadata_config)
File "/usr/local/lib/python3.12/site-packages/datasets/utils/metadata.py", line 100, in _raise_if_data_files_field_not_valid
raise ValueError(yaml_error_message)
ValueError:
Expected data_files in YAML to be either a string or a list of strings
or a list of dicts with two keys: 'split' and 'path', but got [{'split': 'n/a', 'path': '*.npy'}]
Examples of data_files in YAML:
data_files: data.csv
data_files: data/*.png
data_files:
- part0/*
- part1/*
data_files:
- split: train
path: train/*
- split: test
path: test/*
data_files:
- split: train
path:
- train/part1/*
- train/part2/*
- split: test
path: test/*
PS: some symbols like dashes '-' are not allowed in split namesNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Z24 Bridge Dataset - KULEUVEN
Dataset Overview
The Z24 Bridge dataset is a crucial benchmark in Structural Health Monitoring (SHM) research, collected from the Z24 bridge in Switzerland by KULEUVEN (Katholieke Universiteit Leuven). This dataset is widely used in structural health monitoring and damage detection research.
Z24 Bridge Information
The Z24 Bridge was a two-span prestressed concrete bridge built in 1963 in Switzerland with the following specifications:
- Total Length: 60m (2 spans × 30m each)
- Width: 8.3m
- Structure: Prestressed concrete box girder
- Bridge Type: Two-span continuous
- Construction Year: 1963
- Data Collection Period: 1998 (before controlled demolition)
Dataset Structure
Original Raw Data
Shape: (17, 9, 27, 65530)
Dimension meanings:
- 17: Number of scenarios/test conditions
- 9: Number of measurement setups/configurations
- 27: Number of sensors/measurement points
- 65530: Length of time points in each measurement
After Data Cleaning
Shape: (17, 9, 27, 60000)
Processing steps:
- Removed 5530 corrupted or missing data points
- Normalized time series length to 60000 samples
- Maintained original sensor and setup layout
Final Processed Data (Reshaped)
Shape: (1530, 27, 6000)
Reshaping process:
- 1530 = 17 × 9 × 10: Total measurement segments
- 17 scenarios
- 9 setups
- 10 segments divided from each long time series
- 27: Number of sensors (unchanged)
- 6000 = 60000 ÷ 10: Each segment contains 6000 time samples
Technical Specifications
Measurement Parameters
- Sensor type: Accelerometers
- Measurement: Vibration response data
- Units: m/s² (acceleration)
Data Collection Conditions
- Environmental conditions: Controlled and natural conditions
- Excitation: Ambient vibration, controlled loading
- Damage scenarios: Progressive damage artificially introduced
- Reference state: Undamaged baseline measurements
File Structure
Data_Z24_processed/
├── README.md # This documentation file (English)
├── README_vi.md # Vietnamese version
├── inputs.npy # Input data (1530, 27, 6000)
├── labels.npy # Labels for damage states
├── data_visualization.ipynb # Jupyter notebook for data exploration
├── pixi.toml # Environment configuration
└── pixi.lock # Locked dependencies
File Descriptions
inputs.npy
- Shape: (1530, 27, 6000)
- Type: numpy.float64
- Content: Preprocessed vibration time-series data
- Sensors (27): Accelerometers placed at various locations on the bridge
labels.npy
- Shape: Corresponding to sample count (1530,)
- Type: Depends on classification task
- Content:
- Damage state labels
- Environmental condition indicators
- Or regression targets
Research Applications
This dataset is commonly used for:
1. Damage Detection
- Binary classification: damaged vs undamaged
- Multi-class: different damage severities
- Anomaly detection algorithms
2. Damage Localization
- Spatial localization of damage
- Sensor fusion techniques
- Modal analysis approaches
3. Machine Learning Applications
- Deep learning for SHM
- Feature extraction methods
- Time series classification
- Transfer learning studies
4. Signal Processing Research
- Modal parameter identification
- Frequency domain analysis
- Time-frequency analysis
- Noise robustness studies
Dataset Characteristics
Advantages
- ✅ Realistic data: Collected from real-world structure
- ✅ Controlled damage: Progressive damage scenarios
- ✅ Multiple sensors: Rich spatial information
- ✅ Benchmark status: Widely used for comparison
- ✅ Well-documented: Extensive literature available
Challenges
- ⚠️ Environmental effects: Temperature, humidity variations
- ⚠️ Operational variability: Traffic, loading conditions
- ⚠️ Class imbalance: Limited damage data vs normal conditions
- ⚠️ Noise levels: Real-world measurement noise
- ⚠️ Sensor placement: Fixed sensor configuration
Data Processing Pipeline
# Data processing flow from raw to final
Raw Data (17, 9, 27, 65530)
↓ [scenarios, setups, sensors, timepoints]
[Data Cleaning & Quality Control]
↓
Cleaned Data (17, 9, 27, 60000)
↓
[Segmentation & Reshaping]
↓
Final Data (1530, 27, 6000)
↓ [segments, sensors, timepoints_per_segment]
Preprocessing Steps Performed
- Quality Control: Removed corrupted measurements
- Length Normalization: Trimmed/padded to 60000 samples
- Segmentation: Divided into 6000-sample segments
- Reshaping: Flattened scenario × setup × segment dimensions
Usage Instructions
Loading Data
import numpy as np
# Load input data and labels
inputs = np.load('inputs.npy') # Shape: (1530, 27, 6000)
labels = np.load('labels.npy') # Shape: (1530,)
print(f"Input shape: {inputs.shape}")
print(f"Labels shape: {labels.shape}")
Basic Analysis
# Statistical analysis
print(f"Input range: [{inputs.min():.4f}, {inputs.max():.4f}]")
print(f"Input mean: {inputs.mean():.4f}")
print(f"Input std: {inputs.std():.4f}")
# Label distribution
unique_labels, counts = np.unique(labels, return_counts=True)
print(f"Unique labels: {unique_labels}")
print(f"Label counts: {counts}")
Visualization
Use the provided data_visualization.ipynb notebook to visualize and explore the dataset.
References
Key Papers
Worden, K., & Manson, G. (2007). The application of machine learning to structural health monitoring. Philosophical Transactions of the Royal Society A, 365(1851), 515-537.
Reynders, E., et al. (2008). Output-only structural health monitoring in changing environmental conditions by means of nonlinear system identification. Structural Health Monitoring, 7(4), 243-268.
Maeck, J., & De Roeck, G. (2003). Dynamic bending and torsion stiffness derivation from modal curvatures and torsion rates. Journal of Sound and Vibration, 265(1), 153-170.
Dataset References
- KULEUVEN SHM Database: Structural Health Monitoring research group
- Z24 Bridge Benchmark: Community standard in SHM research
- Original Studies: Search literature with keywords "Z24 bridge" + "KULEUVEN"
Contact & Support
- Institution: KULEUVEN (Katholieke Universiteit Leuven)
- Department: Civil Engineering
- Research Group: Structural Mechanics
- Website: KULEUVEN Civil Engineering
License & Citation
When using this dataset in research, please cite the original papers and acknowledge KULEUVEN university.
@misc{z24_bridge_dataset,
title={Z24 Bridge Structural Health Monitoring Dataset},
author={KULEUVEN},
institution={Katholieke Universiteit Leuven},
year={1998},
note={Processed version: 17 scenarios, 9 setups, 27 sensors, reshaped to (1530, 27, 6000)}
}
Data Structure Summary
| Dimension | Original | Cleaned | Final | Description |
|---|---|---|---|---|
| Scenarios | 17 | 17 | 17×10=170* | Test conditions |
| Setups | 9 | 9 | 9×10=90* | Measurement configurations |
| Sensors | 27 | 27 | 27 | Accelerometer locations |
| Timepoints | 65530 | 60000 | 6000 | Samples per segment |
| Total Shape | (17,9,27,65530) | (17,9,27,60000) | (1530,27,6000) | Final format |
*Each original time series was divided into 10 segments, hence 1530 = 17×9×10
Dataset processed and prepared for Structural Health Monitoring and Machine Learning research.
- Downloads last month
- 4