Closed qq492947833 closed 11 months ago
The error two looks like because input is tf.Tensor type,but if I want to use tensorflow.keras.models.Model to create a neural network,I must be use keras.layers.Input as model's input.So how can I add DGL's GraphConv layer to tensorflow model?
This issue has been automatically marked as stale due to lack of activity. It will be closed if no further activity occurs. Thank you
As we announced in our slack channel: After DGL 2.0 (ETA: 2023Q4), we'll be prioritizing PyTorch backend due to resource constraints, saying goodbye to MXNet and TensorFlow support. If you're interested in investigating this further and fixing it, feel free to reopen the issue and modify the related DGL-TF code. We're happy to help you get your code merged.
OK,I will use other function in my work,thanks again
I notice that your function support tensorflow know,but there have big problem now. When I use code:
start_point and end_point and vx and eweight are all np.narray type.
it will raise error:
but if I make start_point,end_point and eweight to tf.Tensor type like this:
It will raise a error:
It look like contradiction,becase if start_point and end_point and eweight is np.narray type,it will raise error one.And if start_point and end_point and eweight is tf.Tensor type,it will raise error two.You can run any example include my code,and it will raise this error. I dont know the DGL library is support tensorflow or not.