-
Hello PyG Community , I'm working with a heterogenous graph with 2 node types , say By this I mean, {b_1,b_2,b_3,....b_1000} with {a_1,a_2,a_3.....a_50} , have observed data
So given these possibilities,
Ideally we want to be able to predict or forecast these values for the upcoming year, based on the static graph Please let me know if you've tried something like this before. Looking for some ideas on how to structure the labeled dataset for this "forecasting" problem for the next year , given the current year average values. Is there a better way to approach this, that comes to mind? I would love some help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Sorry for my late reply, this slipped under my radar. I think this is an edge regression problem: Given an unseen pair node |
Beta Was this translation helpful? Give feedback.
Let me try to clarify. From my understanding, you have a
edge_index
and a corresponding 52-dim feature vectoredge_attr
. Each edge belongs to a given year (e.g.,edge_time
vector). During training/evaluation, you make predictions for the last yeart
. As such, you can divide the set of edges into training/evaluation edges and message passing edgesYou can then simple split
edge_label_index
randomly into training, validation and test sets.