-
Notifications
You must be signed in to change notification settings - Fork 785
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility for TF2 #115
Comments
Thank you for your message. Could you clarify what compatibility issues you are referring to? There is a TF2 version of the |
Hi cirpote, looks like you're trying to use placeholders in TF2 which no longer exist. I highly recommend looking at the notebook in sort example in Tensorflow 2. You will need to remove placeholders completely from your code and pass direct Tensors to your graph networks. Hope this helps! |
Now it is working, thanks again. |
feels like the other demos should be updated as well, specifically the graph_net_basics where even the links to TF1 are not even working (i.e. for unsorted_segment_sum |
Thanks for flagging @Mistobaan , the main problem is that we don't have integration tests for the demos, just for the tests, we will set something up :) Most of the library works exactly the same in TF2 and TF1, as the library is actually the same, and we thought the only differences ( |
@Mistobaan With respect to the second question:
|
@alvarosg thank you for the quick response. for the PR I was thinking just a simple update of the notebook to be fully TF2 runnable with the updated links and imports. |
@Mistobaan Of course, if you want to add a separate GraphNets Basics demo to the TF2 demo folder that covers the existing topics + Maybe start by covering only |
Hi all,
first of all, I would like to say that I found the paper and this library extremely useful and with many possible real applications. However, I have a small concern about its compatibility with TF2. I tried to re-adapt the shortest_path.py example with the TF2 framework, but I found several compatibility issues.
Is there an easy way to fix it? thanks in advance
The text was updated successfully, but these errors were encountered: