https://github.com/ozogxyz/cmapss
Novel algorithms to predict Remaining Useful Life (RUL) on NASA’s benchmark dataset, CMAPSS turbofan engine degradation simulation.
https://github.com/ozogxyz/cmapss
deep-learning forecasting-model python pytorch time-series
Last synced: about 1 year ago
JSON representation
Novel algorithms to predict Remaining Useful Life (RUL) on NASA’s benchmark dataset, CMAPSS turbofan engine degradation simulation.
- Host: GitHub
- URL: https://github.com/ozogxyz/cmapss
- Owner: ozogxyz
- Created: 2023-01-05T08:49:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-08T09:28:46.000Z (almost 3 years ago)
- Last Synced: 2025-04-01T00:44:49.992Z (over 1 year ago)
- Topics: deep-learning, forecasting-model, python, pytorch, time-series
- Language: Python
- Homepage: https://ozogxyz.github.io/cmapss
- Size: 3.62 MB
- Stars: 8
- Watchers: 0
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
______________________________________________________________________
______________________________________________________________________
## Description
Novel algorithms to predict Remaining Useful Life (RUL) on NASA’s benchmark dataset, CMAPSS turbofan engine degradation simulation.
## Dataset
Benchmark source: NASA Intelligent Systems Division: Prognostics Center of Excellence - Prognostic Health Management, Predictive Maintenance of Turbofan Engines.
The generation of data-driven prognostics models requires the availability of data sets with run-to-failure trajectories. To contribute to the development of these methods, the data set provides a new realistic data set of run-to-failure trajectories for a small fleet of aircraft engines under realistic flight conditions. The damage propagation modelling used for the generation of this synthetic data set builds on the modeling strategy from previous work. The data set was generated with the Commercial Modular Aero-Propulsion System Simulation (C-MAPSS) dynamical model. The data set has been provided by the NASA Prognostics Center of Excellence (PCoE) in collaboration with ETH Zurich and PARC.
[Link to the dataset](https://www.nasa.gov/intelligent-systems-division/)
Download Mirror: https://phm-datasets.s3.amazonaws.com/NASA/17.+Turbofan+Engine+Degradation+Simulation+Data+Set+2.zip
Data Set Citation: M. Chao, C.Kulkarni, K. Goebel and O. Fink (2021). "Aircraft Engine Run-to-Failure Dataset under real flight conditions",
NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA
______________________________________________________________________
## Project Description
This project uses PyTorch Lightning powered `rul-datasets` to generate data sets. Hydra is an open source powerful utility to configure
experiments and generate configuration files. The template has many loggers to choose from including popular MLFlow and Weights and Biases.
______________________________________________________________________
## How to run
Install dependencies
```bash
# clone project
git clone https://github.com/ozogxyz/cmapss
cd cmapss
# [OPTIONAL] create conda environment
conda create -n myenv python=3.9
conda activate myenv
# install pytorch according to instructions
# https://pytorch.org/get-started/
# install requirements
pip install -r requirements.txt
# rul-datasets library requires the environment variable RUL_DATASETS_DATA_ROOT to be set.
export RUL_DATASETS_DATA_ROOT={path-to-project}/data
```
Train model with default configuration
```bash
# train on CPU
python src/train.py trainer=cpu
# train on GPU
python src/train.py trainer=gpu
```
Train model with chosen experiment configuration from [configs/experiment/](configs/experiment/)
```bash
python src/train.py experiment=experiment_name.yaml
```
You can override any parameter from command line like this
```bash
python src/train.py trainer.max_epochs=20 datamodule.batch_size=64
```