I come from a non computer science background and i am new to the field of machine learning. I was trying Dynamic Graph Neural Networks for sequential recommendation for a link prediction task to get the next command prediction for a building information modelling software. However, i am not sure how this model can be generalized to new unseen nodes.
The graph consists of user and item nodes, and the edges denote the interaction of users with item. Using an order aware graph attention mechanism the node embeddings are updated. Predition takes place using a dot product between the final user and item node embeddings to get the scores. If a new node comes to the graph, and lets say, it interacts with 5 item nodes, how can we get an embedding to the new user without retraining the whole model again.
I tried using a simple union/intersection method and average the embeddings of similar users (that interacted with the same 5 items), and passed the embedding to the model, but it yielded nan metrics. Any guidance would really appreciated.