Adding 'batch mode' to MessagePassing #361
-
Thank you for this excellent project. I'd like to use BatchLoader with a model using MessagePassing. I'm trying to decide the best way to approach the problem:
Any advice on how best to approach this? For 1. could there be a quick fix to 'get_inputs', or do you think there are many changes needed? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
A few thoughts.
Cheers |
Beta Was this translation helpful? Give feedback.
-
@danielegrattarola sincere thanks for the quick and thorough response. Much appreciated. Thanks to your advice we figured out that we could do what we wanted with Disjoint mode. |
Beta Was this translation helpful? Give feedback.
A few thoughts.
Conv
. There is no advantage of usingMessagePassing
overConv
anyway, at the end you just need to implement your desired tensor manipulation inside of thecall
method.MessagePassing
only gives you a bit of structure in defining the tensor manipulation, and a…