danielzuegner / nettack

Implementation of the paper "Adversarial Attacks on Neural Networks for Graph Data".
https://www.cs.cit.tum.de/daml/forschung/nettack/
MIT License
218 stars 56 forks source link

No Features for polblogs? #3

Closed farezaur closed 5 years ago

farezaur commented 5 years ago

It seems there is no feature matrix available at least for the uploaded polblogs dataset? How did you do the feature matrix(X_obs) computation in this case?

danielzuegner commented 5 years ago

Hi,

the Polblogs dataset does not come with node attributes. In this case, we set the attributes matrix to the NxN identity matrix. In this case we can think of a GCN as performing some kind of label propagation on the graph.

farezaur commented 5 years ago

Thanks for the clarification. Does that mean that you cant perform feature perturbation on polblogs dataset? Because changing identity matrix won't be an unnoticable perturbation. Did you guys do that experiment?

danielzuegner commented 5 years ago

You are correct, in this case we can't perform feature perturbations. In our experiments in the paper, we only performed structure perturbations in this case.