Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
task_categories:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
+
- tabular-regression
|
| 6 |
+
pretty_name: TwinnableAgent C-MAPSS processed parquet data
|
| 7 |
+
tags:
|
| 8 |
+
- cmapss
|
| 9 |
+
- predictive-maintenance
|
| 10 |
+
- remaining-useful-life
|
| 11 |
+
- twinnableagent
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# TwinnableAgent C-MAPSS Processed Parquet Data
|
| 15 |
+
|
| 16 |
+
This dataset hosts the processed NASA C-MAPSS turbofan degradation files used by
|
| 17 |
+
TwinnableAgent. It includes FD001 through FD004 as parquet files plus the
|
| 18 |
+
conversion script used to derive them from the NASA raw training text files.
|
| 19 |
+
|
| 20 |
+
Raw NASA zip and text dumps are intentionally not mirrored here. The raw source
|
| 21 |
+
of record is the NASA Prognostics Center of Excellence C-MAPSS Turbofan Engine
|
| 22 |
+
Degradation dataset, currently distributed through NASA Open Data as
|
| 23 |
+
`CMAPSSData.zip`.
|
| 24 |
+
|
| 25 |
+
## Files
|
| 26 |
+
|
| 27 |
+
| File | Rows | Units | Operating conditions | Fault modes |
|
| 28 |
+
|---|---:|---:|---:|---:|
|
| 29 |
+
| `FD001_processed.parquet` | 20,631 | 100 | 1 | 1 |
|
| 30 |
+
| `FD002_processed.parquet` | 53,759 | 260 | 6 | 1 |
|
| 31 |
+
| `FD003_processed.parquet` | 24,720 | 100 | 1 | 2 |
|
| 32 |
+
| `FD004_processed.parquet` | 61,249 | 249 | 6 | 2 |
|
| 33 |
+
| `scripts/convert_cmapss_to_parquet.py` | - | - | - | - |
|
| 34 |
+
|
| 35 |
+
## Conversion
|
| 36 |
+
|
| 37 |
+
Each processed parquet is derived from the matching NASA training file:
|
| 38 |
+
|
| 39 |
+
```text
|
| 40 |
+
train_FD001.txt -> FD001_processed.parquet
|
| 41 |
+
train_FD002.txt -> FD002_processed.parquet
|
| 42 |
+
train_FD003.txt -> FD003_processed.parquet
|
| 43 |
+
train_FD004.txt -> FD004_processed.parquet
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
The conversion keeps the NASA column order, assigns explicit column names, and
|
| 47 |
+
adds a per-row remaining-useful-life label:
|
| 48 |
+
|
| 49 |
+
```text
|
| 50 |
+
rul = max(cycle for unit) - cycle
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
The conversion command used by TwinnableAgent is:
|
| 54 |
+
|
| 55 |
+
```bash
|
| 56 |
+
python scripts/convert_cmapss_to_parquet.py --datasets FD001 FD002 FD003 FD004
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Schema
|
| 60 |
+
|
| 61 |
+
All four parquet files use the same schema:
|
| 62 |
+
|
| 63 |
+
| Column | Type | Meaning |
|
| 64 |
+
|---|---|---|
|
| 65 |
+
| `unit` | integer | Engine trajectory identifier. |
|
| 66 |
+
| `cycle` | integer | Time-cycle index within the trajectory. |
|
| 67 |
+
| `op1`, `op2`, `op3` | float | NASA operating setting columns. |
|
| 68 |
+
| `s1` through `s21` | float | NASA sensor channels. Sensor units are anonymized by C-MAPSS. |
|
| 69 |
+
| `rul` | integer | Remaining useful life in cycles, derived during conversion. |
|
| 70 |
+
|
| 71 |
+
## Operating-condition clusters
|
| 72 |
+
|
| 73 |
+
TwinnableAgent PAL resolves FD002 and FD004 into six operating-condition groups
|
| 74 |
+
by rounding the three operating settings to the nearest integer and assigning a
|
| 75 |
+
stable label by sorted tuple order.
|
| 76 |
+
|
| 77 |
+
FD002 mapping:
|
| 78 |
+
|
| 79 |
+
| Cluster | Rounded `(op1, op2, op3)` | Rows | Units represented |
|
| 80 |
+
|---|---:|---:|---:|
|
| 81 |
+
| `op_cluster_0` | `(0, 0, 100)` | 8,044 | 260 |
|
| 82 |
+
| `op_cluster_1` | `(10, 0, 100)` | 8,096 | 260 |
|
| 83 |
+
| `op_cluster_2` | `(20, 1, 100)` | 8,122 | 260 |
|
| 84 |
+
| `op_cluster_3` | `(25, 1, 60)` | 8,002 | 260 |
|
| 85 |
+
| `op_cluster_4` | `(35, 1, 100)` | 8,037 | 260 |
|
| 86 |
+
| `op_cluster_5` | `(42, 1, 100)` | 13,458 | 260 |
|
| 87 |
+
|
| 88 |
+
FD004 mapping:
|
| 89 |
+
|
| 90 |
+
| Cluster | Rounded `(op1, op2, op3)` | Rows | Units represented |
|
| 91 |
+
|---|---:|---:|---:|
|
| 92 |
+
| `op_cluster_0` | `(0, 0, 100)` | 9,238 | 249 |
|
| 93 |
+
| `op_cluster_1` | `(10, 0, 100)` | 9,224 | 249 |
|
| 94 |
+
| `op_cluster_2` | `(20, 1, 100)` | 9,091 | 249 |
|
| 95 |
+
| `op_cluster_3` | `(25, 1, 60)` | 9,139 | 249 |
|
| 96 |
+
| `op_cluster_4` | `(35, 1, 100)` | 9,162 | 249 |
|
| 97 |
+
| `op_cluster_5` | `(42, 1, 100)` | 15,395 | 249 |
|
| 98 |
+
|
| 99 |
+
## Provenance note: FD004 unit count
|
| 100 |
+
|
| 101 |
+
The NASA readme describes FD004 training data as 248 trajectories, but the raw
|
| 102 |
+
`train_FD004.txt` file contains 249 distinct unit identifiers. This repository
|
| 103 |
+
preserves the raw file as authoritative and reports FD004 as 249 units.
|
| 104 |
+
|
| 105 |
+
## Intended use
|
| 106 |
+
|
| 107 |
+
These files support TwinnableAgent reproducibility, PAL adapter validation,
|
| 108 |
+
cross-dataset predictive-maintenance experiments, and C-MAPSS RUL benchmark
|
| 109 |
+
work. They are processed training trajectories, not raw NASA archives.
|