├── .gitignore ├── LICENSE ├── README.md ├── assets ├── FlowChart-Testing.jpg ├── FlowChart-Training.jpg ├── RUL_1_3_GG.png ├── RUL_Corr_1500_z.png ├── RUL_Corr_1500_z_1_4.png ├── RUL_Corr_1500_z_start1400.png ├── RUL_Corr_1500_z_u.png └── RUL_Corr_500_1500.png ├── main.py └── rul_prediction ├── __init__.py ├── customKF.py ├── customRTS.py ├── data_extraction.py ├── feature_utils.py ├── mahalanobis_distance.py └── rul_predictor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /assets/FlowChart-Testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/FlowChart-Testing.jpg -------------------------------------------------------------------------------- /assets/FlowChart-Training.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/FlowChart-Training.jpg -------------------------------------------------------------------------------- /assets/RUL_1_3_GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/RUL_1_3_GG.png -------------------------------------------------------------------------------- /assets/RUL_Corr_1500_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/RUL_Corr_1500_z.png -------------------------------------------------------------------------------- /assets/RUL_Corr_1500_z_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/RUL_Corr_1500_z_1_4.png -------------------------------------------------------------------------------- /assets/RUL_Corr_1500_z_start1400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/RUL_Corr_1500_z_start1400.png -------------------------------------------------------------------------------- /assets/RUL_Corr_1500_z_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/RUL_Corr_1500_z_u.png -------------------------------------------------------------------------------- /assets/RUL_Corr_500_1500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/assets/RUL_Corr_500_1500.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/main.py -------------------------------------------------------------------------------- /rul_prediction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rul_prediction/customKF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/rul_prediction/customKF.py -------------------------------------------------------------------------------- /rul_prediction/customRTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/rul_prediction/customRTS.py -------------------------------------------------------------------------------- /rul_prediction/data_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/rul_prediction/data_extraction.py -------------------------------------------------------------------------------- /rul_prediction/feature_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/rul_prediction/feature_utils.py -------------------------------------------------------------------------------- /rul_prediction/mahalanobis_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/rul_prediction/mahalanobis_distance.py -------------------------------------------------------------------------------- /rul_prediction/rul_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatshah21/RUL-Prediction/HEAD/rul_prediction/rul_predictor.py --------------------------------------------------------------------------------