├── .gitignore ├── Figures ├── All_Floors_Attention.png ├── GCN_embedding_1st_period.png ├── GCN_embedding_F.png ├── GCN_embedding_nodes.png ├── PPS.png ├── SC.png ├── attention_5F.png └── fusion_model.png ├── License ├── Models ├── GAT_LSTM.py ├── GCN_LSTM.py └── __init__.py ├── README.md ├── Utils ├── __init__.py ├── dataset.py ├── setLogger.py └── utils.py ├── checkData.ipynb ├── download.sh ├── environment.yaml ├── inference.py ├── inference_arg.py ├── test_GAT_LSTM.py ├── test_GCN_LSTM.py ├── train_GAT_LSTM.py ├── train_GAT_LSTM_arg.py ├── train_GCN_LSTM.py └── train_GCN_LSTM_arg.py /.gitignore: -------------------------------------------------------------------------------- 1 | # env 2 | __pycache__ 3 | .vscode 4 | 5 | # folders 6 | Data 7 | Results 8 | Inference -------------------------------------------------------------------------------- /Figures/All_Floors_Attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/All_Floors_Attention.png -------------------------------------------------------------------------------- /Figures/GCN_embedding_1st_period.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/GCN_embedding_1st_period.png -------------------------------------------------------------------------------- /Figures/GCN_embedding_F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/GCN_embedding_F.png -------------------------------------------------------------------------------- /Figures/GCN_embedding_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/GCN_embedding_nodes.png -------------------------------------------------------------------------------- /Figures/PPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/PPS.png -------------------------------------------------------------------------------- /Figures/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/SC.png -------------------------------------------------------------------------------- /Figures/attention_5F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/attention_5F.png -------------------------------------------------------------------------------- /Figures/fusion_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Figures/fusion_model.png -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/License -------------------------------------------------------------------------------- /Models/GAT_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Models/GAT_LSTM.py -------------------------------------------------------------------------------- /Models/GCN_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Models/GCN_LSTM.py -------------------------------------------------------------------------------- /Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Utils/dataset.py -------------------------------------------------------------------------------- /Utils/setLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Utils/setLogger.py -------------------------------------------------------------------------------- /Utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/Utils/utils.py -------------------------------------------------------------------------------- /checkData.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/checkData.ipynb -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/download.sh -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/environment.yaml -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/inference.py -------------------------------------------------------------------------------- /inference_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/inference_arg.py -------------------------------------------------------------------------------- /test_GAT_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/test_GAT_LSTM.py -------------------------------------------------------------------------------- /test_GCN_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/test_GCN_LSTM.py -------------------------------------------------------------------------------- /train_GAT_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/train_GAT_LSTM.py -------------------------------------------------------------------------------- /train_GAT_LSTM_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/train_GAT_LSTM_arg.py -------------------------------------------------------------------------------- /train_GCN_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/train_GCN_LSTM.py -------------------------------------------------------------------------------- /train_GCN_LSTM_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bosh-Kuo/GNN-LSTM-based-Fusion-Model-for-Structural-Dynamic-Responses-Prediction/HEAD/train_GCN_LSTM_arg.py --------------------------------------------------------------------------------