Hi,
I am doing a graph embedding task using a GCN model (Kipf, 2017). My inputs are a lot of small (<5) batches of graphs. I was wondering how is it better to get a single embedding for each single batch, so that it can used all at once in the downstream regression?
There is also a second part of a question. Those batches belong to a few distinct classes (batches >> classes), there is a ‘one batch: many classes’ mapping. This class information does not need to be propagated through the graph structures, it is a label. How to better add this information?
Right now i am getting embeddings of single graphs from each batch, then concatenating them and then adding labels,.
thanks!