Closed linjc16 closed 3 years ago
Right now, the examples in Graphormer repo are mainly about molecular modeling, where we view each molecular graph as one undirectional graph. Hence the out_degree == in_degree == degree. If you want to try directional graph with different in/out degree encoding, just modify Line114 by yourself.
Got it. Thank u. :)
Right now, the examples in Graphormer repo are mainly about molecular modeling, where we view each molecular graph as one undirectional graph. Hence the out_degree == in_degree == degree. If you want to try directional graph with different in/out degree encoding, just modify Line114 by yourself.
model.py Line 114
in_degree, out_degree = batched_data.in_degree, batched_data.in_degree
?