We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In order to make this work for python 3, instances of "import cPickle as pickle" need to be changed to "import pickle"
Additionally, in data_utils.py the load_graph function must be changed from "node_maps.iteritems()" to "node_maps.items()" . Similar in graph.py
Further, all print statements now need parentheses.
The text was updated successfully, but these errors were encountered:
aggregators.py, encoders.py and train_helpers also need instances of .iteritems() changed to .items()
An additional function that needs changing is "xrange" to "range" in train_helpers.py line 48, model.py line 49, and utils.py line 51, 54, 57, 58
Sorry, something went wrong.
No branches or pull requests
In order to make this work for python 3, instances of "import cPickle as pickle" need to be changed to "import pickle"
Additionally, in data_utils.py the load_graph function must be changed from "node_maps.iteritems()" to "node_maps.items()" . Similar in graph.py
Further, all print statements now need parentheses.
The text was updated successfully, but these errors were encountered: