From 908a04dd37dc64757491d954514ee211bf40693e Mon Sep 17 00:00:00 2001 From: Utaemon Toyota <toyota@cl.uni-heidelberg.de> Date: Tue, 26 Feb 2019 20:37:36 +0100 Subject: [PATCH] comment --- EP/Cora_node_classification/cora.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EP/Cora_node_classification/cora.py b/EP/Cora_node_classification/cora.py index 1eed9f8..c1a3d95 100644 --- a/EP/Cora_node_classification/cora.py +++ b/EP/Cora_node_classification/cora.py @@ -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 -- GitLab