├── LICENSE ├── README.md ├── gcn_gru ├── GCN_GRU_run.py ├── GCN_GRU_sparse.py ├── GRU_cell.py ├── initializations.py ├── input_data.py ├── layers.py ├── metrics.py ├── model.py ├── optimizer.py ├── preprocessing.py └── read_data │ ├── adj_epinion_500_index.npy │ ├── belief_feature_500.npy │ ├── epinion_node500_alledges.npy │ ├── read_data.py │ └── uncertainty_feature_500.npy ├── git_figure.PNG └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/README.md -------------------------------------------------------------------------------- /gcn_gru/GCN_GRU_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/GCN_GRU_run.py -------------------------------------------------------------------------------- /gcn_gru/GCN_GRU_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/GCN_GRU_sparse.py -------------------------------------------------------------------------------- /gcn_gru/GRU_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/GRU_cell.py -------------------------------------------------------------------------------- /gcn_gru/initializations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/initializations.py -------------------------------------------------------------------------------- /gcn_gru/input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/input_data.py -------------------------------------------------------------------------------- /gcn_gru/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/layers.py -------------------------------------------------------------------------------- /gcn_gru/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/metrics.py -------------------------------------------------------------------------------- /gcn_gru/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/model.py -------------------------------------------------------------------------------- /gcn_gru/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/optimizer.py -------------------------------------------------------------------------------- /gcn_gru/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/preprocessing.py -------------------------------------------------------------------------------- /gcn_gru/read_data/adj_epinion_500_index.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/read_data/adj_epinion_500_index.npy -------------------------------------------------------------------------------- /gcn_gru/read_data/belief_feature_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/read_data/belief_feature_500.npy -------------------------------------------------------------------------------- /gcn_gru/read_data/epinion_node500_alledges.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/read_data/epinion_node500_alledges.npy -------------------------------------------------------------------------------- /gcn_gru/read_data/read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/read_data/read_data.py -------------------------------------------------------------------------------- /gcn_gru/read_data/uncertainty_feature_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/gcn_gru/read_data/uncertainty_feature_500.npy -------------------------------------------------------------------------------- /git_figure.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/git_figure.PNG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxj32/GCN-GRU/HEAD/requirements.txt --------------------------------------------------------------------------------