-
My dataset is generated by lots of sensors (assumpting 100 sensors) from time step 1 to time step 60. Each sensor generates 10 features and is linked by another sensor according to some relationship such as domain knowledge. For each time step, some sensors do not work and do not generate data (it could be fill with Na or 0). My GNN model is to predict the node states (10 features) in the kth time step through fusing the data of the previous time steps (e.g., k-1, k-2, k-3). It means that the column number of X is 30 and the column number of Y is 10. Finally, I should get 57 graphs, each graph contains the fusion of three previous graphs as X and one graph as Y. When I build my dataset, I have several questions: ❓ Question 1 ❓ Question 2 ❓ Question 3 ❓ Question 4 For example, in the kth time step, only 80 sensors are working, should I remove the 20 non-working nodes and reorder the node number from 0 to 79? But this could lead to the row number of X is uncertain, which could cause the dimension error during the running program. Thank you for your kind and patient answers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
Beta Was this translation helpful? Give feedback.
0
tonum_nodes - 1
, so that, e.g., the node featurex[10]
corresponds to index values10
in youredge_index
.