AWE
AWE copied to clipboard
Compute graph embeddings via Anonymous Walk Embeddings
` if graph_labels is not None: ` on line 150 must be self.graph_labels and in train ``` batch_data, batch_labels = self.g2v.generate_file_batch(self.batch_size, self.window_size, self.doc_id, self.ROOT + self.dataset + '_corpus{}/{}'.format(label_suffix, self.corpus_fn_name.format(self.doc_id)), self.nodes_per_graphs[self.doc_id])...
Hi, I noticed that the input of the graph data seems not the same as the format of the datasets provided on website: https://ls11-www.cs.tu-dortmund.de/staff/morris/graphkerneldatasets, where each dataset has several txt...
Hi, If `len(lines)` = 4, `list(range(len(lines) - 1))` would be only [0, 1, 2] So.. Is here need to remove `-1` to make sure the sample result is include the...