Hi, I am trying to use GraphSAGE to train the embeddings of nodes. The nodes I included in my graph are household objects, which means that they already have some meanings and can be embedded as vectors using word2vec, or miniLM or other NLP methods. However, I build different relationships between the nodes, therefore, I want to train the embedding of them using GraphSAGE with taking the word2vec embedding as initial embedding, so the embeddings are likely to contain both information from a language perspective and a graph relation perspective.
So I searched the GraphSAGE doc here, GraphSAGE - Neo4j Graph Data Science, but I cannot seem to find out whether the GraphSAGE could train the embeddings with an initial embedding.
I am curious if GraphSAGE can suffice my expectations, or should I try other embedding aggregation methods instead?
Much thanks!