├── .idea ├── .gitignore ├── cnn_lstm_attention.iml ├── csv-plugin.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── 1D-CNN-BiLSTM-Attention.py ├── 1D-CNN.py ├── B0005.csv ├── B005放电数据集.csv ├── BiLSTM.py ├── README.md └── requirements.txt /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/cnn_lstm_attention.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/.idea/cnn_lstm_attention.iml -------------------------------------------------------------------------------- /.idea/csv-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/.idea/csv-plugin.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /1D-CNN-BiLSTM-Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/1D-CNN-BiLSTM-Attention.py -------------------------------------------------------------------------------- /1D-CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/1D-CNN.py -------------------------------------------------------------------------------- /B0005.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/B0005.csv -------------------------------------------------------------------------------- /B005放电数据集.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/B005放电数据集.csv -------------------------------------------------------------------------------- /BiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/BiLSTM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macluring/DL-NASA-SOH-CNN-BILSTM-Attention/HEAD/requirements.txt --------------------------------------------------------------------------------