-
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Apr 1, 2022
Replies: 1 comment 6 replies
-
Interesting. In general, it might be best to look into PyTorch Geometric Temporal for this, which provides better support for these temporal problems. In order to help you better, it would be important to find out how you update your graph across timestamps. In my opinion, you would have a graph for every timestamp. Within a single batch/sequence of these graphs, you would pad nodes with zeros such that all data has the same number of nodes (similar to how it is done in mini-batching of sentences). |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
rperera12
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Interesting. In general, it might be best to look into PyTorch Geometric Temporal for this, which provides better support for these temporal problems.
In order to help you better, it would be important to find out how you update your graph across timestamps. In my opinion, you would have a graph for every timestamp. Within a single batch/sequence of these graphs, you would pad nodes with zeros such that all data has the same number of nodes (similar to how it is done in mini-batching of sentences).