Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
+
- tabular-classification
|
| 6 |
+
tags:
|
| 7 |
+
- bioprocess
|
| 8 |
+
- manufacturing
|
| 9 |
+
- anomaly-detection
|
| 10 |
+
- fault-detection
|
| 11 |
+
- batch-monitoring
|
| 12 |
+
- pharma
|
| 13 |
+
pretty_name: Golden Batch Sentinel Data
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1M<n<10M
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Golden Batch Sentinel Data
|
| 19 |
+
|
| 20 |
+
Benchmark datasets for process monitoring and fault detection in batch manufacturing.
|
| 21 |
+
|
| 22 |
+
## Datasets
|
| 23 |
+
|
| 24 |
+
### IndPenSim (Industrial Penicillin Simulation)
|
| 25 |
+
|
| 26 |
+
A 100,000L fermentation simulation with 100 batches and rich multivariate signals.
|
| 27 |
+
|
| 28 |
+
- **Source**: [Mendeley Data](https://data.mendeley.com/datasets/pdnjz7zz5x/2)
|
| 29 |
+
- **Paper**: [Modern day monitoring and control challenges...](https://doi.org/10.1016/j.compchemeng.2018.05.019)
|
| 30 |
+
- **Batches**: 100 (90 normal, 10 faulty)
|
| 31 |
+
- **Variables**: 37 process variables (Raman spectra excluded for efficiency)
|
| 32 |
+
- **Time resolution**: 0.2 hours
|
| 33 |
+
|
| 34 |
+
**Files:**
|
| 35 |
+
- `indpensim/batches.parquet` - Main batch data
|
| 36 |
+
- `indpensim/statistics.parquet` - Batch statistics and fault labels
|
| 37 |
+
|
| 38 |
+
### Tennessee Eastman Process (TEP)
|
| 39 |
+
|
| 40 |
+
The most common benchmark for fault detection in multivariate industrial processes.
|
| 41 |
+
|
| 42 |
+
- **Source**: [Harvard Dataverse](https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/6C3JR1)
|
| 43 |
+
- **Fault types**: 20 different fault scenarios
|
| 44 |
+
- **Variables**: 52 (41 measured + 11 manipulated)
|
| 45 |
+
|
| 46 |
+
**Files:**
|
| 47 |
+
- `tep/fault_free_train.parquet` - Normal operation (training)
|
| 48 |
+
- `tep/fault_free_test.parquet` - Normal operation (testing)
|
| 49 |
+
- `tep/faulty_train.parquet` - Faulty operation (training, all 20 faults)
|
| 50 |
+
- `tep/faulty_test.parquet` - Faulty operation (testing, all 20 faults)
|
| 51 |
+
|
| 52 |
+
## Usage
|
| 53 |
+
|
| 54 |
+
```python
|
| 55 |
+
from datasets import load_dataset
|
| 56 |
+
|
| 57 |
+
# Load IndPenSim
|
| 58 |
+
indpensim = load_dataset("foundation-models/golden-batch-sentinel-data", data_dir="indpensim")
|
| 59 |
+
|
| 60 |
+
# Load TEP
|
| 61 |
+
tep = load_dataset("foundation-models/golden-batch-sentinel-data", data_dir="tep")
|
| 62 |
+
|
| 63 |
+
# Or load specific files
|
| 64 |
+
import pandas as pd
|
| 65 |
+
from huggingface_hub import hf_hub_download
|
| 66 |
+
|
| 67 |
+
path = hf_hub_download(
|
| 68 |
+
repo_id="foundation-models/golden-batch-sentinel-data",
|
| 69 |
+
filename="indpensim/batches.parquet",
|
| 70 |
+
repo_type="dataset"
|
| 71 |
+
)
|
| 72 |
+
df = pd.read_parquet(path)
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
## License
|
| 76 |
+
|
| 77 |
+
The original datasets are provided under their respective licenses:
|
| 78 |
+
- IndPenSim: CC BY 4.0
|
| 79 |
+
- TEP: Public domain
|
| 80 |
+
|
| 81 |
+
This compilation is provided under CC BY 4.0.
|
| 82 |
+
|
| 83 |
+
## Citation
|
| 84 |
+
|
| 85 |
+
If you use this data, please cite the original papers:
|
| 86 |
+
|
| 87 |
+
```bibtex
|
| 88 |
+
@article{goldrick2019modern,
|
| 89 |
+
title={Modern day monitoring and control challenges outlined on an industrial-scale benchmark fermentation process},
|
| 90 |
+
author={Goldrick, Stephen and others},
|
| 91 |
+
journal={Computers \& Chemical Engineering},
|
| 92 |
+
year={2019}
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
@article{downs1993plant,
|
| 96 |
+
title={A plant-wide industrial process control problem},
|
| 97 |
+
author={Downs, James J and Vogel, Ernest F},
|
| 98 |
+
journal={Computers \& Chemical Engineering},
|
| 99 |
+
year={1993}
|
| 100 |
+
}
|
| 101 |
+
```
|