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.
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.