├── .gitignore ├── .idea ├── .gitignore ├── N-CMAPSS_DL.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Dataset_exploration ├── N_CMAPSS_Example_data_loading_and_exploration.ipynb └── N_CMAPSS_processing.ipynb ├── Figures └── ncmapss_dummy ├── LICENSE ├── README.md ├── cmapss.png ├── inference_cnn_aggr.py ├── ncmapss_requirements.txt ├── sample_creator.py ├── sample_creator_unit.py ├── sample_creator_unit_auto.py ├── turbo_engine.jpg └── utils ├── __pycache__ ├── data_preparation.cpython-38.pyc ├── data_preparation_unit.cpython-38.pyc ├── dnn.cpython-38.pyc ├── ea.cpython-38.pyc ├── ea_multi.cpython-38.pyc ├── elm_network.cpython-38.pyc ├── elm_task.cpython-38.pyc └── os_elm.cpython-38.pyc ├── data_preparation.py ├── data_preparation_unit.py └── dnn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/N-CMAPSS_DL.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/.idea/N-CMAPSS_DL.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Dataset_exploration/N_CMAPSS_Example_data_loading_and_exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/Dataset_exploration/N_CMAPSS_Example_data_loading_and_exploration.ipynb -------------------------------------------------------------------------------- /Dataset_exploration/N_CMAPSS_processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/Dataset_exploration/N_CMAPSS_processing.ipynb -------------------------------------------------------------------------------- /Figures/ncmapss_dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/README.md -------------------------------------------------------------------------------- /cmapss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/cmapss.png -------------------------------------------------------------------------------- /inference_cnn_aggr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/inference_cnn_aggr.py -------------------------------------------------------------------------------- /ncmapss_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/ncmapss_requirements.txt -------------------------------------------------------------------------------- /sample_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/sample_creator.py -------------------------------------------------------------------------------- /sample_creator_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/sample_creator_unit.py -------------------------------------------------------------------------------- /sample_creator_unit_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/sample_creator_unit_auto.py -------------------------------------------------------------------------------- /turbo_engine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/turbo_engine.jpg -------------------------------------------------------------------------------- /utils/__pycache__/data_preparation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/data_preparation.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_preparation_unit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/data_preparation_unit.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dnn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/dnn.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/ea.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/ea.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/ea_multi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/ea_multi.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/elm_network.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/elm_network.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/elm_task.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/elm_task.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/os_elm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/__pycache__/os_elm.cpython-38.pyc -------------------------------------------------------------------------------- /utils/data_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/data_preparation.py -------------------------------------------------------------------------------- /utils/data_preparation_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/data_preparation_unit.py -------------------------------------------------------------------------------- /utils/dnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohyunho/N-CMAPSS_DL/HEAD/utils/dnn.py --------------------------------------------------------------------------------