I am interested in two things:
- First, how do I encode a subgraph from a knowledge graph as an input in a neural network, such that this is efficiently done and which type of neural network is efficient for this, if in the end I want to predict a real value from a certain subgraph?
The task should look like this: NN:
-Input: Knowledge Subgraph
-Output: Real value
How should the input specifically look? Is a neural network able to handle large data as this? Which neural network should I use?
- Secondly, since I know that there should be some subgraph embedding which will create small representations of subgraphs(not node embedding, but graph embedding), is there some useful approach which is able to embed Knowledge Subgraphs such that they can be provided as an input in NN?
Solutions for other similar directed graphs with different types of relations are also welcomed.