Skip to content
Snippets Groups Projects
Commit 908a04dd authored by toyota's avatar toyota
Browse files

comment

parent 9038e14b
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ def write_pickle_graph_file(path_nodes="/cora_data/cora.content", path_edges="/c
with open(path_output_graph + "graph.pkl", "wb") as output:
pkl.dump(g, output)
def read_pickle_graph(path = "graph.pkl"):
def read_pickle_graph(path = "graph.pkl"): #will be used on node_classification.py for accessing the graph
with open(path, 'rb') as f:
graph = pkl.load(f)
return graph
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment