ARGA
ARGA copied to clipboard
This is a TensorFlow implementation of the Adversarially Regularized Graph Autoencoder(ARGA) model as described in our paper: Pan, S., Hu, R., Long, G., Jiang, J., Yao, L., & Zhang, C. (2018). Adver...
1 . change all_edge_idx = range(edges.shape[0]) to all_edge_idx = list(range(edges.shape[0])) in preprocessing.py 2 . change objects.append(pkl.load(open("data/ind.{}.{}".format(dataset, names[i])))) to objects.append(pkl.load(open("data/ind.{}.{}".format(dataset, names[i]),'rb'),encoding='latin1')) in input_data.py
Create README me
How did you solve it in the end,When I use Python 37 + cuda10, tensorflow-gpu 1.14 appears / lib64/ libm.so .6: version `GLIBC_ 2.23' not found
Traceback (most recent call last): File "/Users/linda/mywork/ARGA-master/ARGA/arga/run.py", line 18, in runner.erun() File "/Users/linda/mywork/ARGA-master/ARGA/arga/link_prediction.py", line 27, in erun placeholders = get_placeholder(feas['adj']) KeyError: 'adj'
Hi, it's a nice work and thanks for sharing the code. I have a puzzle, in arga_vae model, when you define the OptimizerVAE in optimizer.py, the generator_loss doesn't plus the...
Hi Ruiqi, Thanks for your nice work! Does your code support running on GPU? I haven't modified it successfully. Thank you very much!
preprocessing.py -> def mask_test_edges(adj): -> def ismember(a, b, tol=5): The actual function is different from the meaning of the name. why??? Actual function: is same rows (https://www.coder.work/article/2401015) Surface name function:...
Can u publish the details of the node clustering experiments in your papers? eg. the repeat count of kmeans is the experiment result best value or average value
Is there a way to embed multiple graphs with these models? Or can I only use one graph at a time? Thanks! This is amazing work!