| import torch |
| import numpy as np |
| import torch.nn.functional as Fd |
| from deeprobust.graph.defense import GCNJaccard, GCN |
| from deeprobust.graph.defense import GCNScore |
| from deeprobust.graph.utils import * |
| from deeprobust.graph.data import Dataset, PrePtbDataset |
| from deeprobust.graph import utils |
| import argparse |
|
|
| parser = argparse.ArgumentParser() |
| parser.add_argument('--seed', type=int, default=15, help='Random seed.') |
| parser.add_argument('--dataset', type=str, default='cora', choices=['cora', 'cora_ml', 'citeseer', 'polblogs', 'pubmed'], help='dataset') |
| parser.add_argument('--ptb_rate', type=float, default=0.05, help='pertubation rate') |
|
|
| args = parser.parse_args() |
| args.cuda = torch.cuda.is_available() |
| print('cuda: %s' % args.cuda) |
| device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") |
|
|
| |
| np.random.seed(args.seed) |
| if args.cuda: |
| torch.cuda.manual_seed(args.seed) |
|
|
| |
| |
| |
| |
| data = Dataset(root='/tmp/', name=args.dataset, setting='prognn') |
| adj, features, labels = data.adj, data.features, data.labels |
| idx_train, idx_val, idx_test = data.idx_train, data.idx_val, data.idx_test |
|
|
| |
| perturbed_data = PrePtbDataset(root='/tmp/', |
| name=args.dataset, |
| attack_method='meta', |
| ptb_rate=args.ptb_rate) |
|
|
| perturbed_adj = perturbed_data.adj |
| |
|
|
|
|
| |
| |
| |
|
|
| print(type(features)) |
| print(type(perturbed_adj)) |
|
|
| model = GCNScore(nfeat=features.shape[1], nclass=labels.max()+1, |
| nhid=16, device=device) |
| |
| |
|
|
| model = model.to(device) |
|
|
| print("labels:", labels) |
| print('=== testing GCN-Jaccard on perturbed graph ===') |
| model.fit(features, perturbed_adj, labels, idx_train, idx_val, threshold=0.01) |
| model.eval() |
| output = model.test(idx_test) |