| import torch |
| import argparse |
| from deeprobust.graph.data import Dataset, Dpr2Pyg |
| from deeprobust.graph.defense import ChebNet |
| from deeprobust.graph.data import Dataset |
| from deeprobust.graph.data import PrePtbDataset |
|
|
| 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='perturbation 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") |
|
|
| |
| 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 |
|
|
| cheby = ChebNet(nfeat=features.shape[1], |
| nhid=16, num_hops=3, |
| nclass=labels.max().item() + 1, |
| dropout=0.5, device=device) |
| cheby = cheby.to(device) |
|
|
| |
| print('==================') |
| print('=== train on clean graph ===') |
|
|
| pyg_data = Dpr2Pyg(data) |
| cheby.fit(pyg_data, verbose=True) |
| cheby.test() |
|
|
| |
| print('==================') |
| print('=== load graph perturbed by Zugner metattack (under prognn splits) ===') |
| perturbed_data = PrePtbDataset(root='/tmp/', |
| name=args.dataset, |
| attack_method='meta', |
| ptb_rate=args.ptb_rate) |
| perturbed_adj = perturbed_data.adj |
| pyg_data.update_edge_index(perturbed_adj) |
| cheby.fit(pyg_data, verbose=True) |
| cheby.test() |
|
|
|
|