An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

______________________________________________________________________

# Hybrid Deep Learning Algorithms for Multivariate Time Series Forecasting
(NASA C-MAPSS Benchmark)

PyTorch
Lightning
Config: Hydra
Template

______________________________________________________________________

## 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
```