-
I have a GNN that supports batching. Given (node_features, edge_index, batch) it outputs node_probabilites. How can I sample from those node_probabilites in a non-sequential manner? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I'm not sure if this is the "best" solution, but here:
I think it's a good idea to incorporate something like that into the Batch class |
Beta Was this translation helpful? Give feedback.
I'm not sure if this is the "best" solution, but here:
Use Gumbel re-parameterization trick:
I think it's a good idea to incorporate something like that into the Batch class